mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 17:08:14 +02:00
This is enabled with the VIRCADIA_THREAD_DEBUGGING environment variable. It's incompatible with VIRCADIA_MEMORY_DEBUGGING, so only one of those can be enabled for a build.
22 lines
640 B
CMake
22 lines
640 B
CMake
set(TARGET_NAME oven)
|
|
|
|
setup_hifi_project(Widgets Gui Concurrent)
|
|
|
|
link_hifi_libraries(shared shaders image gpu ktx fbx hfm baking graphics networking procedural material-networking model-baker task)
|
|
|
|
setup_memory_debugger()
|
|
setup_thread_debugger()
|
|
|
|
if (WIN32)
|
|
package_libraries_for_deployment()
|
|
elseif (UNIX AND NOT APPLE)
|
|
find_package(Threads REQUIRED)
|
|
if(THREADS_HAVE_PTHREAD_ARG)
|
|
target_compile_options(oven PUBLIC "-pthread")
|
|
endif()
|
|
elseif (APPLE)
|
|
# Fix up the rpath so macdeployqt works
|
|
set_target_properties(${TARGET_NAME} PROPERTIES INSTALL_RPATH "@executable_path/../Frameworks")
|
|
endif()
|
|
|
|
install_beside_console()
|