Skip to content

Commit f4112b7

Browse files
committed
Switch from C++14 to C++17
This would help replace boost::optional with std::optional and completely remove Boost as a dependency of this project.
1 parent f2ea4b9 commit f4112b7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ target_include_directories(multiprocess PUBLIC
6868
${Boost_INCLUDE_DIR})
6969
set_target_properties(multiprocess PROPERTIES
7070
PUBLIC_HEADER "${MP_PUBLIC_HEADERS}"
71-
CXX_STANDARD 14
71+
CXX_STANDARD 17
7272
CXX_STANDARD_REQUIRED YES)
7373
install(TARGETS multiprocess EXPORT Multiprocess ARCHIVE DESTINATION lib PUBLIC_HEADER DESTINATION include/mp)
7474

@@ -83,7 +83,7 @@ target_link_libraries(mpgen PRIVATE Threads::Threads)
8383
target_link_libraries(mpgen PRIVATE multiprocess)
8484
set_target_properties(mpgen PROPERTIES
8585
INSTALL_RPATH_USE_LINK_PATH TRUE
86-
CXX_STANDARD 14
86+
CXX_STANDARD 17
8787
CXX_STANDARD_REQUIRED YES)
8888
install(TARGETS mpgen EXPORT Multiprocess RUNTIME DESTINATION bin)
8989

@@ -135,7 +135,7 @@ if(BUILD_TESTING AND TARGET CapnProto::kj-test)
135135
target_link_libraries(mptest PRIVATE Threads::Threads)
136136
target_link_libraries(mptest PRIVATE multiprocess)
137137
set_target_properties(mptest PROPERTIES
138-
CXX_STANDARD 14
138+
CXX_STANDARD 17
139139
CXX_STANDARD_REQUIRED YES)
140140
add_test(NAME mptest COMMAND mptest)
141141
endif()

pkgconfig/libmultiprocess.pc.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ Description: Multiprocess IPC library
99
Version: 0.0
1010

1111
Libs: -L${libdir} -lmultiprocess -L${capnp_prefix}/lib -lcapnp-rpc -lcapnp -lkj-async -lkj -pthread -lpthread
12-
Cflags: -std=c++14 -I${includedir} -I${capnp_prefix}/include -pthread
12+
Cflags: -std=c++17 -I${includedir} -I${capnp_prefix}/include -pthread

0 commit comments

Comments
 (0)