From 99eb9822b4dfa67f65674eac92f1371dc4be9d31 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 17 Jan 2020 23:53:16 +0300 Subject: support all 4 cmake default configurations --- cmake/examples/simple/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cmake/examples/simple') diff --git a/cmake/examples/simple/CMakeLists.txt b/cmake/examples/simple/CMakeLists.txt index 5f42914..4f8859e 100644 --- a/cmake/examples/simple/CMakeLists.txt +++ b/cmake/examples/simple/CMakeLists.txt @@ -7,3 +7,6 @@ include(../../common.cmake) add_executable(foo foo.cpp) install(TARGETS foo RUNTIME DESTINATION bin) +if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + install(FILES "$" DESTINATION bin OPTIONAL) +endif() -- cgit v1.2.3