aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/CMakeLists.txt
blob: ed1ebab1d074b4c15582eccabf64947c4c8eaa75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# echo.cpp is MSVC-only, I think.
# TODO: fix that?
if(MSVC)
    add_executable(echo echo.cpp)
    set_target_properties(echo PROPERTIES OUTPUT_NAME winapi-common-test-echo)
    install(TARGETS echo RUNTIME DESTINATION bin)
    install_pdbs(TARGETS echo DESTINATION bin)

    add_subdirectory(unit_tests)
endif()