Skip to content

Commit

Permalink
Update version in CMakeLists (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienPean authored Mar 9, 2025
2 parents c41414b + e411b34 commit ac9db31
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ cmake_minimum_required(VERSION 3.22)
project(
comcept
DESCRIPTION "C++20 and beyond composable concepts"
VERSION 0.0.1
VERSION 1.0.0
LANGUAGES CXX
)
set(CMAKE_CXX_EXTENSIONS OFF)
if(PROJECT_IS_TOP_LEVEL)
set(CMAKE_CXX_EXTENSIONS OFF)
endif()

add_library(comcept INTERFACE)
add_library(comcept::comcept ALIAS comcept)
Expand Down Expand Up @@ -39,6 +41,7 @@ write_basic_package_version_file(
${PROJECT_NAME}ConfigVersion.cmake
VERSION ${PACKAGE_VERSION}
COMPATIBILITY SameMajorVersion
ARCH_INDEPENDENT
)
configure_package_config_file(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/${PROJECT_NAME}Config.cmake.in"
Expand Down

0 comments on commit ac9db31

Please sign in to comment.