mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 21:46:45 +02:00
20 lines
391 B
CMake
20 lines
391 B
CMake
set(TARGET_NAME oven)
|
|
|
|
setup_hifi_project(Widgets Gui Concurrent)
|
|
|
|
link_hifi_libraries(networking shared image gpu ktx fbx baking model)
|
|
|
|
setup_memory_debugger()
|
|
|
|
if (WIN32)
|
|
package_libraries_for_deployment()
|
|
endif ()
|
|
|
|
if (UNIX)
|
|
find_package(Threads REQUIRED)
|
|
if(THREADS_HAVE_PTHREAD_ARG)
|
|
target_compile_options(PUBLIC oven "-pthread")
|
|
endif()
|
|
endif ()
|
|
|
|
install_beside_console()
|