2023-12-30 12:06:34 +00:00
|
|
|
cmake_minimum_required(VERSION 3.27)
|
2023-12-30 22:40:34 +00:00
|
|
|
project(gh_wh_handler)
|
2023-12-30 12:06:34 +00:00
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
|
|
|
2023-12-30 22:40:34 +00:00
|
|
|
add_executable(gh_wh_handler main.cpp)
|
|
|
|
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc -static-libstdc++")
|
|
|
|
|
|
|
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
target_compile_options(gh_wh_handler PRIVATE -Wall -Wextra -pedantic)
|
|
|
|
endif()
|