summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 92f16aa..0f4bd69 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -64,14 +64,12 @@ endif()
set(DEFAULT_ARGS
-m64 # Target 64-bit architechture
-Wall -Wextra # All the good default warnings
- -Wfloat-equal
-Wundef
-Wshadow
-Wpointer-arith
-Wcast-align
-Wstrict-prototypes
-Wwrite-strings
- -Wswitch-default
-Wconversion
)
@@ -127,8 +125,8 @@ FetchContent_MakeAvailable(cglm stb)
set(GLAD_HEADER ${CMAKE_BINARY_DIR}/include/glad/gl.h)
## Compilation information
-add_compile_options(${RELEASE_OPTS} ${BUILD_OPTS})
-add_link_options(${RELEASE_OPTS} ${BUILD_OPTS})
+add_compile_options(${RELEASE_OPTS})
+add_link_options(${RELEASE_OPTS})
# The main engine compilation target is defined here
add_subdirectory(src)