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

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

add_subdirectory(unit_tests)