summaryrefslogtreecommitdiffstats
path: root/Tests/MSManifest/Subdir/CMakeLists.txt
blob: a47cf0030979516339a1b4c721fb6ee7aaed6963 (plain)
1
2
3
4
5
6
7
8
9
configure_file(test.manifest.in test.manifest)
add_executable(MSManifest main.c ${CMAKE_CURRENT_BINARY_DIR}/test.manifest)

if(MSVC AND NOT MSVC_VERSION LESS 1400)
  add_custom_command(TARGET MSManifest POST_BUILD VERBATIM
    COMMAND ${CMAKE_COMMAND} -Dexe=$<TARGET_FILE:MSManifest>
            -P ${CMAKE_CURRENT_SOURCE_DIR}/check.cmake
    )
endif()