summaryrefslogtreecommitdiffstats
path: root/test/test-platform/CMakeLists.txt
blob: f173c7ba42e827afd403a7b24839493fcf086e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
add_executable(test-platform
    main.cpp
    TestPlatform.cpp)

# FIXME: Supress the need for the -Wno-unused-parameter
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-parameter")

include_directories(
    "${PROJECT_SOURCE_DIR}/parameter/include"
    "${PROJECT_SOURCE_DIR}/remote-processor"
    "${PROJECT_SOURCE_DIR}/utility")

target_link_libraries(test-platform parameter remote-processor)

install(TARGETS test-platform RUNTIME DESTINATION bin)