summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 2f364e8db1e2a4517b7fed17b59127a7209ec3a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
cmake_minimum_required(VERSION 2.6)
project(simpl)

set(source_files src/simpl/base.cpp
                 src/simpl/peak_detection.cpp
                 src/simpl/partial_tracking.cpp
                 src/simpl/synthesis.cpp
                 src/simpl/residual.cpp
)

FILE(GLOB sms_src src/sms/*.c)
FILE(GLOB sndobj_src src/sndobj/*.cpp)
FILE(GLOB loris_src src/loris/*.C)
LIST(APPEND source_files ${source_files}
                         ${sndobj_src}
                         ${sms_src}
                         ${loris_src})

set(include_files src/simpl/simpl.h
                  src/simpl/base.h
                  src/simpl/peak_detection.h
                  src/simpl/partial_tracking.h
                  src/simpl/synthesis.h
                  src/simpl/residual.h
                  src/sms/sms.h
                  src/sndobj/SndObj.h
                  src/loris/Analyzer.h
)

add_definitions(-DHAVE_FFTW3_H)

set(libs m fftw3 gsl gslcblas)

include_directories(src/simpl src/sms src/sndobj src/sndobj/rfftw src/loris)

add_library(simpl SHARED ${source_files})
target_link_libraries(simpl ${libs})

install(TARGETS simpl LIBRARY DESTINATION lib)
install(FILES ${include_files} DESTINATION include/simpl)


# ----------------------------------------------------------------------------
# Tests
# ----------------------------------------------------------------------------
if(BUILD_TESTS)
    set(test_base_src ${source_files} tests/test_base.cpp)
    set(test_peak_detection_src ${source_files} tests/test_peak_detection.cpp)
    set(test_partial_tracking_src ${source_files} tests/test_partial_tracking.cpp)
    set(test_synthesis_src ${source_files} tests/test_synthesis.cpp)

    LIST(APPEND libs cppunit sndfile)

    add_executable(test_base ${test_base_src})
    add_executable(test_peak_detection ${test_peak_detection_src})
    add_executable(test_partial_tracking ${test_partial_tracking_src})
    add_executable(test_synthesis ${test_synthesis_src})

    target_link_libraries(test_base ${libs})
    target_link_libraries(test_peak_detection ${libs})
    target_link_libraries(test_partial_tracking ${libs})
    target_link_libraries(test_synthesis ${libs})
else()
    message("-- Not building tests. To change run CMake with -D BUILD_TESTS=yes")
endif()