diff options
Diffstat (limited to 'src/fastscale')
-rw-r--r-- | src/fastscale/CMakeLists.txt | 4 |
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) |