mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 08:14:48 +02:00
Initial reorganization
This commit is contained in:
parent
4e3bba047e
commit
6ec276c818
7 changed files with 17 additions and 0 deletions
17
libraries/monitoring/CMakeLists.txt
Normal file
17
libraries/monitoring/CMakeLists.txt
Normal file
|
@ -0,0 +1,17 @@
|
|||
set(TARGET_NAME monitoring)
|
||||
setup_hifi_library()
|
||||
link_hifi_libraries(shared networking)
|
||||
|
||||
add_crashpad()
|
||||
target_breakpad()
|
||||
|
||||
|
||||
if (UNIX AND NOT APPLE)
|
||||
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
||||
find_package(Threads REQUIRED)
|
||||
target_link_libraries(Threads::Threads)
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
add_compile_definitions(_USE_MATH_DEFINES)
|
||||
endif()
|
Loading…
Reference in a new issue