obliteration/CMakeLists.txt

18 lines
411 B
CMake
Raw Permalink Normal View History

2023-04-20 21:34:38 -04:00
cmake_minimum_required(VERSION 3.21)
2022-09-16 17:42:22 -04:00
project(obliteration)
2023-03-01 03:56:57 -05:00
# Set warning level to highest. This will propagate to sub-directories too.
2022-09-16 17:42:22 -04:00
if(WIN32)
add_compile_options(/W4)
else()
add_compile_options(-Wall -Wextra)
endif()
# Fix warning for DOWNLOAD_EXTRACT_TIMESTAMP on ExternalProject.
if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
cmake_policy(SET CMP0135 NEW)
endif()
2022-09-16 17:42:22 -04:00
add_subdirectory(src)