Skip to content

Commit 8827b9c

Browse files
committed
v3.0.1
1 parent b38756d commit 8827b9c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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:

CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.20)
66
project(process)
77
include(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

1111
set(CMAKE_CXX_STANDARD 14)
1212
set(CMAKE_C_STANDARD 11)
@@ -25,10 +25,10 @@ endif ()
2525

2626
option(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

3333
if (WIN32)
3434
target_link_libraries(process PRIVATE psapi)
@@ -37,6 +37,6 @@ else ()
3737
endif ()
3838

3939
if (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)
4242
endif ()

0 commit comments

Comments
 (0)