Added split for libmath on Win32
This commit is contained in:
@ -22,7 +22,7 @@ set(SETTING_PLATFORM_GLFW 1)
|
|||||||
set(SETTING_PLATFORM_SDL 2)
|
set(SETTING_PLATFORM_SDL 2)
|
||||||
set(SETTING_PLATFORM SETTING_PLATFORM_SDL)
|
set(SETTING_PLATFORM SETTING_PLATFORM_SDL)
|
||||||
|
|
||||||
set(SETTING_USE_GLAD 0)
|
set(SETTING_USE_GLAD 1)
|
||||||
|
|
||||||
# Game Settings
|
# Game Settings
|
||||||
set(SETTING_GAME_POKER 1)
|
set(SETTING_GAME_POKER 1)
|
||||||
@ -70,7 +70,9 @@ add_executable(${PROJECT_NAME} ${HEADER_FILES} ${SOURCE_FILES})
|
|||||||
################################# STATIC LIBS ##################################
|
################################# STATIC LIBS ##################################
|
||||||
|
|
||||||
# Math
|
# Math
|
||||||
target_link_libraries(${PROJECT_NAME} m)
|
if(NOT WIN32)
|
||||||
|
target_link_libraries(${PROJECT_NAME} m)
|
||||||
|
endif()
|
||||||
|
|
||||||
# GLAD
|
# GLAD
|
||||||
if(${SETTING_USE_GLAD} EQUAL 1)
|
if(${SETTING_USE_GLAD} EQUAL 1)
|
||||||
|
@ -31,7 +31,6 @@
|
|||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <math.h>
|
|
||||||
|
|
||||||
#if defined(_WIN32) || defined(_WIN64)
|
#if defined(_WIN32) || defined(_WIN64)
|
||||||
// Windows Fixes
|
// Windows Fixes
|
||||||
@ -39,4 +38,5 @@
|
|||||||
# define sleep(n) _sleep(n)
|
# define sleep(n) _sleep(n)
|
||||||
#else
|
#else
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <math.h>
|
||||||
#endif
|
#endif
|
Reference in New Issue
Block a user