mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-03 21:08:04 +00:00
Some checks failed
CMake on multiple platforms / build (Release, cl, cl, windows-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, clang, clang++, ubuntu-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, gcc, g++, ubuntu-latest) (push) Has been cancelled
17 lines
489 B
CMake
17 lines
489 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(clay_examples_cpp_project_example CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
if(NOT MSVC)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -fno-omit-frame-pointer -g")
|
|
endif()
|
|
|
|
add_executable(clay_examples_cpp_project_example main.cpp)
|
|
|
|
target_include_directories(clay_examples_cpp_project_example PUBLIC .)
|
|
|
|
if(NOT MSVC)
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}")
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}")
|
|
endif()
|