-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathBoostTargets.cmake
69 lines (60 loc) · 2.17 KB
/
BoostTargets.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
set(required_boost_components)
# Boost Thread
if(NEED_BOOST_THREAD)
list(APPEND required_boost_components thread system date_time chrono)
endif()
if(NEED_BOOST_PROGRAM_OPTIONS)
list(APPEND required_boost_components program_options)
endif()
if(NEED_BOOST_FILESYSTEM)
list(APPEND required_boost_components filesystem)
endif()
if(NEED_BOOST_LOCALE)
list(APPEND required_boost_components locale)
endif()
if(WIN32)
set(OSVR_MIN_BOOST 1.54) # ABI break in Boost IPC on Windows pre 1.54
else()
set(OSVR_MIN_BOOST 1.44) # Lower version bound of 1.43 for range adapters, 1.44 for Filesystem v3
endif()
find_package(Boost ${OSVR_MIN_BOOST} COMPONENTS ${required_boost_components} REQUIRED)
if(NEED_BOOST_THREAD)
add_library(boost_thread INTERFACE)
target_link_libraries(boost_thread
INTERFACE
${Boost_THREAD_LIBRARY}
${Boost_SYSTEM_LIBRARY}
${Boost_DATE_TIME_LIBRARY}
${Boost_CHRONO_LIBRARY}
${CMAKE_THREAD_LIBS_INIT})
target_include_directories(boost_thread INTERFACE ${Boost_INCLUDE_DIR})
if(WIN32 AND NOT MSVC AND Boost_USE_STATIC_LIBS)
# Work around a foolish insistence to use DLLs on MXE that don't exist.
target_compile_definitions(boost_thread
INTERFACE
BOOST_THREAD_USE_LIB)
endif()
endif()
if(NEED_BOOST_FILESYSTEM)
add_library(boost_filesystem INTERFACE)
target_link_libraries(boost_filesystem
INTERFACE
${Boost_FILESYSTEM_LIBRARY}
${Boost_SYSTEM_LIBRARY})
target_include_directories(boost_filesystem INTERFACE ${Boost_INCLUDE_DIR})
target_compile_definitions(boost_filesystem INTERFACE BOOST_FILESYSTEM_VERSION=3)
endif()
if(NEED_BOOST_PROGRAM_OPTIONS)
add_library(boost_program_options INTERFACE)
target_link_libraries(boost_program_options
INTERFACE
${Boost_PROGRAM_OPTIONS_LIBRARY})
target_include_directories(boost_program_options INTERFACE ${Boost_INCLUDE_DIR})
endif()
if(NEED_BOOST_LOCALE)
add_library(boost_locale INTERFACE)
target_link_libraries(boost_locale
INTERFACE
${Boost_LOCALE_LIBRARY})
target_include_directories(boost_locale INTERFACE ${Boost_INCLUDE_DIR})
endif()