From e8b824dac6a2ce4d56c7d08f74f3e80bf1c01d3a Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Fri, 2 Dec 2011 11:28:12 +0100 Subject: Add missing CMakeLists --- src/CMakeLists.txt | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++ test/CMakeLists.txt | 9 +++++++++ 2 files changed, 65 insertions(+) create mode 100644 src/CMakeLists.txt create mode 100644 test/CMakeLists.txt diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..8fca838 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,56 @@ +# --- Look for SSE support -------------------------------------------------- +include(CheckCXXSourceRuns) +set(SSE_FLAGS) +if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) + set(CMAKE_REQUIRED_FLAGS "-msse") + check_cxx_source_runs(" + #include + int main() + { + __m128 a, b; + float vals[4] = {0}; + a = _mm_loadu_ps(vals); + b = a; + b = _mm_add_ps(a,b); + _mm_storeu_ps(vals,b); + return 0; + }" + SSE_AVAILABLE) + + set(CMAKE_REQUIRED_FLAGS) + + if (SSE_AVAILABLE) + option(HAVE_SSE "Use SSE extensions" ON) + set(SSE_FLAGS "-msse") + endif() +endif() + +# --- Build library and install --------------------------------------------- +include_directories( + ${CMAKE_SOURCE_DIR}/src + ${CMAKE_CURRENT_BINARY_DIR} +) + +add_definitions("--std=c99 -Wall -O2 ${SSE_FLAGS}") + +add_library(ufodecode SHARED ufodecode.c) + +set_target_properties(ufodecode PROPERTIES + VERSION ${LIBUFODECODE_ABI_VERSION} + SOVERSION ${LIBUFODECODE_ABI_MAJOR_VERSION} +) + +install(TARGETS ufodecode + LIBRARY DESTINATION lib${LIB_SUFFIX} +) + +install(FILES + ufodecode.h + DESTINATION include +) + +if ("${CMAKE_BUILD_TYPE}" MATCHES "Debug") + set(DEBUG "1") +endif() +configure_file(config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h) + diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt new file mode 100644 index 0000000..aea7b7d --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,9 @@ +# --- Build test executable ------------------------------------------------- +include_directories( + ${CMAKE_SOURCE_DIR}/src +) + +add_executable(ipedec ipedec.c) +target_link_libraries(ipedec ufodecode) + +install(TARGETS ipedec DESTINATION ${BIN_INSTALL_DIR}) -- cgit v1.2.3