From 1c37b9d44606a0f0f67a25487a6029bf4727ef02 Mon Sep 17 00:00:00 2001 From: Marcus10110 Date: Mon, 9 Jul 2018 16:41:41 -0700 Subject: [PATCH] Template update of 1-Wire Analyzer --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 486fac2..a736231 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,9 +21,9 @@ add_library(one_wire_analyzer SHARED ${SOURCES}) target_link_libraries(one_wire_analyzer PRIVATE Saleae::AnalyzerSDK) if(MSVC) - install(TARGETS one_wire_analyzer RUNTIME DESTINATION ".") + install(TARGETS one_wire_analyzer RUNTIME DESTINATION "Analyzers") else() - install(TARGETS one_wire_analyzer LIBRARY DESTINATION ".") + install(TARGETS one_wire_analyzer LIBRARY DESTINATION "Analyzers") endif() set_post_build_destination(one_wire_analyzer)