From 784af6d51ac4889ccc2af6f208a6a80e2e69a25a Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Wed, 11 Mar 2020 11:50:56 +0100 Subject: [PATCH] Fixed cmake list on Windows. --- CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 92101a3..0064a29 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,6 +32,8 @@ if (NOT DEFINED CONAN_EXPORTED) target_compile_definitions(ArbutilsTests PRIVATE TESTS_BUILD) endif() -install(TARGETS Arbutils - CONFIGURATIONS Release - RUNTIME DESTINATION lib) \ No newline at end of file +if (NOT WINDOWS) + install(TARGETS Arbutils + CONFIGURATIONS Release + RUNTIME DESTINATION lib) +endif() \ No newline at end of file