summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-03-13 01:47:10 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-03-13 01:47:37 +0100
commit2062151f6cba766d44dcaf199c42df5d76a019e7 (patch)
tree6273030e062bc16f9caabb1c3e944713c1ba04ab
parentff3e84bf837875479cbb1211e818468d553772de (diff)
downloadk3b-2062151f6cba766d44dcaf199c42df5d76a019e7.tar.gz
k3b-2062151f6cba766d44dcaf199c42df5d76a019e7.zip
cmake: Force to use C compiler for asm_scale.S
This fix FTBFS with cmake < 2.8.5 Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit d663c2fe913b985bdec1b170c43a09af39dd5156)
-rw-r--r--src/fastscale/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fastscale/CMakeLists.txt b/src/fastscale/CMakeLists.txt
index 267d764..66812fd 100644
--- a/src/fastscale/CMakeLists.txt
+++ b/src/fastscale/CMakeLists.txt
@@ -21,7 +21,9 @@ link_directories(
${TQT_LIBRARY_DIRS}
)
-enable_language(CXX ASM)
+# Force to use C compiler for asm_scale.S instead of ASM
+# because contains mixed code - ASM with C definitions
+set_source_files_properties( asm_scale.S PROPERTIES LANGUAGE C )
# TODO add assembler flags here (2016-01-14, Fat-Zer)