From 42734a62c94451803b69af86a75b8f256560b969 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sat, 14 Aug 2021 13:45:02 -0700 Subject: [PATCH] Added split for libmath on Win32 --- CMakeLists.txt | 6 ++++-- include/dawn/libs.h | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dfb36170..89068adf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ set(SETTING_PLATFORM_GLFW 1) set(SETTING_PLATFORM_SDL 2) set(SETTING_PLATFORM SETTING_PLATFORM_SDL) -set(SETTING_USE_GLAD 0) +set(SETTING_USE_GLAD 1) # Game Settings set(SETTING_GAME_POKER 1) @@ -70,7 +70,9 @@ add_executable(${PROJECT_NAME} ${HEADER_FILES} ${SOURCE_FILES}) ################################# STATIC LIBS ################################## # Math -target_link_libraries(${PROJECT_NAME} m) +if(NOT WIN32) + target_link_libraries(${PROJECT_NAME} m) +endif() # GLAD if(${SETTING_USE_GLAD} EQUAL 1) diff --git a/include/dawn/libs.h b/include/dawn/libs.h index c525e0e2..9441c466 100644 --- a/include/dawn/libs.h +++ b/include/dawn/libs.h @@ -31,7 +31,6 @@ #include #include #include -#include #if defined(_WIN32) || defined(_WIN64) // Windows Fixes @@ -39,4 +38,5 @@ # define sleep(n) _sleep(n) #else #include + #include #endif \ No newline at end of file