File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1818 strategy :
1919 matrix :
2020 # os: [windows-latest, macos-latest, ubuntu-latest]
21- os : [ windows-latest, macos-13, ubuntu-22.04 ]
21+ os : [ windows-latest, macos-13, ubuntu-22.04, macos-14 ]
2222 runs-on : ${{ matrix.os }}
2323
2424 steps :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.20)
66project (process)
77include (GNUInstallDirs)
88
9- set (TTLDTOR_PROCESS "v3.0.0 " CACHE STRING "The Process package version" )
9+ set (TTLDTOR_PROCESS "v3.0.1 " CACHE STRING "The Process package version" )
1010
1111set (CMAKE_CXX_STANDARD 14)
1212set (CMAKE_C_STANDARD 11)
@@ -25,10 +25,10 @@ endif ()
2525
2626option (TTLDTOR_PROCESS_SAMPLES "Enable building samples for Process" ${TTLDTOR_PROCESS_ROOT_PROJECT} )
2727
28- add_library (process src/process.cpp)
29- target_include_directories (process PUBLIC include )
28+ add_library (${PROJECT_NAME} src/process.cpp)
29+ target_include_directories (${PROJECT_NAME} PUBLIC include )
3030
31- add_library (process::process ALIAS process )
31+ add_library (process::process ALIAS ${PROJECT_NAME} )
3232
3333if (WIN32 )
3434 target_link_libraries (process PRIVATE psapi)
@@ -37,6 +37,6 @@ else ()
3737endif ()
3838
3939if (TTLDTOR_PROCESS_SAMPLES)
40- add_executable (process_test test /main.cpp)
41- target_link_libraries (process_test process)
40+ add_executable (${PROJECT_NAME} _test test /main.cpp)
41+ target_link_libraries (${PROJECT_NAME} _test process)
4242endif ()
You can’t perform that action at this time.
0 commit comments