Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
adomurad committed May 21, 2016
1 parent e4b3050 commit b73a93c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CMakeLists.txt
Expand Up @@ -28,11 +28,17 @@ endif()
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
if ($ENV{BUILD_SANITIZE})
SET (CMAKE_EXE_LINKER_FLAGS
-fsanitize=address
"-fsanitize=address"
)
SET (CMAKE_EXE_LINKER_FLAGS
"-fsanitize=undefined"
)
add_definitions(
-fsanitize=address
"-fsanitize=address"
)
add_definitions(
"-fsanitize=undefined"
)
endif()
else()
add_definitions(-DNDEBUG)
Expand Down
1 change: 0 additions & 1 deletion libs/draw-lib/CMakeLists.txt
Expand Up @@ -50,7 +50,6 @@ set(LINKEDDEPS
${OPENGL_gl_LIBRARY}
${SDLIMAGE_LIBRARY}
${SDL_LIBRARY}
${SDLMAIN_LIBRARY}
${FREETYPE_LIBRARIES}
)

Expand Down
2 changes: 1 addition & 1 deletion runtime/settings.yaml
Expand Up @@ -16,7 +16,7 @@ steps_per_draw: 2 #More is almost guaranteed to make the game faster, 1 is ideal
free_memory_while_idle: no

#Debug settings
network_debug_mode: yes
network_debug_mode: no
invincible: no #Feel like exploring ? -> yes
draw_diagnostics: no
verbose_output: no
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Expand Up @@ -117,7 +117,7 @@ set (libraries
${SDLMIXER_LIBRARY}
enet
${SDL_LIBRARY}
${SDLMAIN_LIBRARY}
# ${SDLMAIN_LIBRARY}
${FREETYPE_LIBRARIES}
UnitTest++
)
Expand Down

0 comments on commit b73a93c

Please sign in to comment.