diff options
Diffstat (limited to 'muse2/al')
-rw-r--r-- | muse2/al/CMakeLists.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/muse2/al/CMakeLists.txt b/muse2/al/CMakeLists.txt new file mode 100644 index 00000000..6075a399 --- /dev/null +++ b/muse2/al/CMakeLists.txt @@ -0,0 +1,30 @@ +# +# +# +# + +include(${PROJECT_SOURCE_DIR}/pch.txt) + +set (al_src + al.cpp dsp.cpp + ) + +if (USE_SSE) + set(al_src ${al_src} dspSSE.cpp dspXMM.cpp) +endif (USE_SSE) + +add_library(al STATIC + ${al_src} + ${PROJECT_BINARY_DIR}/all.h.pch + ) + +set_source_files_properties( + al.cpp dsp.cpp + dspXMM.cpp + PROPERTIES COMPILE_FLAGS "-fPIC -include ${PROJECT_BINARY_DIR}/all.h" + ) + +set_source_files_properties( dspSSE.cpp + PROPERTIES COMPILE_FLAGS "-x assembler" + ) + |