Skip to content

Commit

Permalink
fix config error, I hope
Browse files Browse the repository at this point in the history
  • Loading branch information
mhekkel committed Mar 27, 2024
1 parent bbb5feb commit da7a7ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
cmake_minimum_required(VERSION 3.23)

# set the project name
project(libmcfp VERSION 1.3.2 LANGUAGES CXX)
project(libmcfp VERSION 1.3.3 LANGUAGES CXX)

list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)

Expand Down Expand Up @@ -81,7 +81,7 @@ endif()

# adding header sources just helps IDEs
target_sources(libmcfp PUBLIC
FILE_SET mcfp_headers TYPE HEADERS
FILE_SET libmcfp_headers TYPE HEADERS
BASE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/include
FILES
include/mcfp/detail/charconv.hpp
Expand All @@ -94,11 +94,11 @@ target_sources(libmcfp PUBLIC

# installation
install(TARGETS libmcfp
EXPORT mcfp
FILE_SET mcfp_headers
EXPORT libmcfp
FILE_SET libmcfp_headers
DESTINATION include/)

install(EXPORT mcfp
install(EXPORT libmcfp
NAMESPACE libmcfp::
DESTINATION lib/cmake/libmcfp
FILE "libmcfpTargets.cmake")
Expand Down
3 changes: 3 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.3.3
- Yet another config fix

Version 1.3.2
- Fix config.cmake file

Expand Down

0 comments on commit da7a7ac

Please sign in to comment.