updated some documentation

This commit is contained in:
herbglitch 2025-06-21 18:39:16 -06:00
parent 788147b8f2
commit 5fba766695
5 changed files with 19 additions and 16 deletions

View file

@ -11,12 +11,13 @@ function(print var)
message("${var} = ${${var}}")
endfunction()
#TODO: Might want to remove this
# ~ DEFAULT TO DEBUG IF TYPE NOT SET ~ #
if(NOT CMAKE_BUILD_TYPE)
message("[Archeus] Build Type not set, defaulting to Debug")
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Default to Debug" FORCE)
endif()
# ~ COMPILER OPTIONS ~ #
add_compile_options(
"-Wall" "-Werror" "-fexceptions"
"$<$<CONFIG:DEBUG>:-O0;-g3;-ggdb;-DARC_DEBUG;>"