Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ compile_commands.json
*creator.user*

build/
.cache/
local_docs/
CMakeCache.txt
CMakeFiles/
Expand Down
10 changes: 9 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.16)

project(CoreTemplateStd VERSION 1.0.0 LANGUAGES CXX)
project(CoreTemplateStd VERSION 0.5.2 LANGUAGES CXX)

include(GNUInstallDirs)
include(CMakePackageConfigHelpers)
Expand All @@ -24,8 +24,16 @@ option(CORETEMPLATE_BUILD_EXAMPLE "Build the example application" ON)
option(CORETEMPLATE_BUILD_TESTS "Build the test suite" OFF)
option(CORETEMPLATE_BUILD_QT_ADAPTER "Build the optional Qt adapter target" OFF)
option(CORETEMPLATE_BUILD_QT_GUI_EXAMPLE "Build the optional Qt Widgets GUI example" ON)
option(CORETEMPLATE_ENABLE_UNSAFE_FORCE_TERMINATION "Deprecated: unsafe native thread termination is no longer exposed by Core" OFF)
option(CORETEMPLATE_ENABLE_SANITIZERS "Enable AddressSanitizer and UndefinedBehaviorSanitizer for local test and example targets" OFF)

if(CORETEMPLATE_ENABLE_UNSAFE_FORCE_TERMINATION)
message(DEPRECATION
"CORETEMPLATE_ENABLE_UNSAFE_FORCE_TERMINATION is deprecated. "
"Core now uses cooperative cancellation only; this option will be removed in the next major release."
)
endif()

if(CORETEMPLATE_ENABLE_SANITIZERS)
if(MSVC)
message(WARNING "CORETEMPLATE_ENABLE_SANITIZERS is not configured for MSVC")
Expand Down
Loading