aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/CMakeLists.txt
blob: 43b4d4d5c2bfa1e2ba82910b1b96e424cb705e0e (plain) (blame)
1
2
3
4
5
6
7
8
9
add_executable(echo echo.cpp)
set_target_properties(echo PROPERTIES OUTPUT_NAME winapi-common-test-echo)

install(TARGETS echo RUNTIME DESTINATION bin)
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
    install(FILES "$<TARGET_PDB_FILE:echo>" DESTINATION bin OPTIONAL)
endif()

add_subdirectory(unit_tests)