From 64b92b009c802ae7a4e6c096265d6886221c52fa Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sun, 29 Aug 2021 12:59:38 +0200 Subject: [PATCH] Don't build a .dll for the executable you doofus --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7810c5a..aa08094 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,6 +30,6 @@ if (WINDOWS) add_compile_options(-m64) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,-allow-multiple-definition") if (SHARED) - set_target_properties(PokemonScriptTester PROPERTIES SUFFIX ".dll") + set_target_properties(PokemonScriptTester PROPERTIES SUFFIX ".exe") endif(SHARED) endif (WINDOWS) \ No newline at end of file