File tree Expand file tree Collapse file tree 2 files changed +15
-7
lines changed
Expand file tree Collapse file tree 2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ if( DEFINED PROJECT_NAME )
1010endif ()
1111
1212project ( tools
13- VERSION 0.4.1
13+ VERSION 0.4.3
1414 LANGUAGES CXX
1515)
1616
@@ -30,12 +30,14 @@ cmake_dependent_option(
3030 "Build the tools unit tests and integrate with ctest" ON
3131 "BUILD_TESTING AND NOT ${subproject} " OFF
3232)
33+
3334cmake_dependent_option(
3435 tools.python
3536 "Build tools python bindings" ON
3637 "NOT ${subproject} OR DEFINED require.tools.python " OFF
3738)
38- option ( tools.installation "Install njoy::tools" ON )
39+
40+ option ( tools.installation "Install tools" ON )
3941
4042########################################################################
4143# Dependencies
@@ -48,18 +50,18 @@ include( cmake/dependencies.cmake )
4850# Project targets
4951########################################################################
5052
53+ string ( CONCAT prefix
54+ "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR} /src>"
55+ "$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR} >"
56+ )
57+
5158# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
5259# tools : library
5360# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
5461
5562add_library ( tools INTERFACE )
5663add_library ( njoy::tools ALIAS tools )
5764
58- string ( CONCAT prefix
59- "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR} /src>"
60- "$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR} >"
61- )
62-
6365target_include_directories ( tools INTERFACE ${prefix} )
6466
6567target_link_libraries ( tools
Original file line number Diff line number Diff line change 11# Release Notes&mdash ; tools
22Given here are some release notes for tools.
33
4+ ## tools v0.4.3
5+ Bug fixes:
6+ - fix an issue using intel classic 2023.1.0 (compilation error on the all view)
7+
8+ There are no functional changes in this version.
9+
410## tools v0.4.2
511This version updates the pybind11 version to 2.13.6 and makes an update to the GitHub CI file. There are no functional changes.
612
You can’t perform that action at this time.
0 commit comments