From 16d8414b886a5091da7fcfb9ed39d3681a96da7b Mon Sep 17 00:00:00 2001 From: Cliff Foster Date: Mon, 11 Mar 2024 11:13:29 -0700 Subject: [PATCH] Default template should be exe --- platform-config.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform-config.cmake b/platform-config.cmake index ffa3f41..2693bb9 100644 --- a/platform-config.cmake +++ b/platform-config.cmake @@ -20,9 +20,9 @@ set(IDICMAKE_VENDOR_NAMESPACE "idi") set(IDICMAKE_APP_NAMESPACE "app") # If IDICMAKE_IS_LIBRARY is set to true the project will be built as a library. -set(IDICMAKE_IS_LIBRARY true) +set(IDICMAKE_IS_LIBRARY false) # If IDICMAKE_IS_SHARED is set to true then the project will build as a shared library. # If it is set to false it will build as a static library. This requires # IDICMAKE_IS_LIBRARY being set to true -set(IDICMAKE_IS_SHARED true) +set(IDICMAKE_IS_SHARED false)