Skip to content

Commit 1bd6901

Browse files
authored
Add atomic and chrono to the required components in the CMake file (#477)
* Add chrono to the required components in the CMake file
1 parent 7916232 commit 1bd6901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Development/cmake/NmosCppDependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set(BOOST_VERSION_CUR "1.83.0")
66
# note: some components are only required for one platform or other
77
# so find_package(Boost) is called after adding those components
88
# adding the "headers" component seems to be unnecessary (and the target alias "boost" doesn't work at all)
9-
list(APPEND FIND_BOOST_COMPONENTS system date_time regex)
9+
list(APPEND FIND_BOOST_COMPONENTS system date_time regex chrono)
1010
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
1111
if(NOT (CMAKE_CXX_COMPILER_ID MATCHES GNU AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 5.3))
1212
# add filesystem (for bst/filesystem.h, used by nmos/filesystem_route.cpp)

0 commit comments

Comments
 (0)