mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-28 20:47:49 +01:00
26 lines
856 B
CMake
26 lines
856 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(launcher)
|
|
|
|
if (SANITIZE STREQUAL "YES")
|
|
message(WARNING "Enabling sanitizers!")
|
|
add_compile_options(-Wall -Wextra -pedantic -Wshadow -Wformat=2 -Wfloat-equal -D_GLIBCXX_DEBUG -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2)
|
|
add_compile_options(-fsanitize=address -fsanitize=undefined -fno-sanitize-recover)
|
|
add_link_options(-fsanitize=address -fsanitize=undefined -fno-sanitize-recover)
|
|
endif ()
|
|
|
|
if (CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
add_compile_options(-flto)
|
|
add_link_options(-flto)
|
|
endif ()
|
|
|
|
if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
add_compile_options(-O3)
|
|
add_link_options(-O3)
|
|
endif ()
|
|
|
|
find_package(wxWidgets REQUIRED COMPONENTS net core base)
|
|
if (wxWidgets_USE_FILE) # not defined in CONFIG mode
|
|
include(${wxWidgets_USE_FILE})
|
|
endif ()
|
|
|
|
add_subdirectory(src) |