blob: ed1ebab1d074b4c15582eccabf64947c4c8eaa75 (
plain) (
tree)
|
|
# 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()
|