summaryrefslogtreecommitdiff
path: root/glad.CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'glad.CMakeLists.txt')
-rw-r--r--glad.CMakeLists.txt32
1 files changed, 0 insertions, 32 deletions
diff --git a/glad.CMakeLists.txt b/glad.CMakeLists.txt
deleted file mode 100644
index 0ec0384..0000000
--- a/glad.CMakeLists.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-cmake_minimum_required(VERSION 3.21)
-
-set(CMAKE_C_STANDARD 99)
-
-add_library(
- glad STATIC
-
- "src/glad.c"
-)
-
-target_include_directories(
- glad PUBLIC
-
- "include"
-)
-
-if("${CMAKE_C_COMPILER_ID}" MATCHES "Clang|GNU")
- target_compile_options(
- glad PRIVATE
-
- $<IF:$<STREQUAL:"${CMAKE_BUILD_TYPE}","Debug">,-Og,-Ofast>
- -fdiagnostics-color=always
- -g
- )
-elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
- target_compile_options(
- glad PRIVATE
-
- /O2
- $<IF:$<STREQUAL:"${CMAKE_BUILD_TYPE}","Debug">,/Zo>
- )
-endif()