mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 13:49:46 +02:00
19 lines
561 B
CMake
19 lines
561 B
CMake
set(TARGET_NAME oven)
|
|
|
|
setup_hifi_project(Widgets Gui Concurrent)
|
|
|
|
link_hifi_libraries(networking shared image gpu ktx)
|
|
|
|
if (WIN32)
|
|
package_libraries_for_deployment()
|
|
endif ()
|
|
|
|
# try to find the FBX SDK but fail silently if we don't
|
|
# because this tool is not built by default
|
|
find_package(FBX)
|
|
if (FBX_FOUND)
|
|
target_link_libraries(${TARGET_NAME} ${FBX_LIBRARIES})
|
|
target_include_directories(${TARGET_NAME} SYSTEM PRIVATE ${FBX_INCLUDE_DIR})
|
|
endif ()
|
|
|
|
set_target_properties(${TARGET_NAME} PROPERTIES EXCLUDE_FROM_ALL TRUE EXCLUDE_FROM_DEFAULT_BUILD TRUE)
|