Skip to content

Commit 2dfce53

Browse files
committed
Merge branch 'update/release-notes' into 'develop'
Updating version and release notes See merge request njoy/tools!19
2 parents b716bec + 3c08983 commit 2dfce53

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

CMakeLists.txt

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if( DEFINED PROJECT_NAME )
1010
endif()
1111

1212
project( 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+
3334
cmake_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

5562
add_library( tools INTERFACE )
5663
add_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-
6365
target_include_directories( tools INTERFACE ${prefix} )
6466

6567
target_link_libraries( tools

ReleaseNotes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Release Notes&mdash;tools
22
Given 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
511
This version updates the pybind11 version to 2.13.6 and makes an update to the GitHub CI file. There are no functional changes.
612

0 commit comments

Comments
 (0)