mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 18:35:32 +02:00
18 lines
591 B
CMake
18 lines
591 B
CMake
|
|
set(TARGET_NAME render-perf-test)
|
|
|
|
if (WIN32)
|
|
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /ignore:4049 /ignore:4217")
|
|
endif()
|
|
|
|
# This is not a testcase -- just set it up as a regular hifi project
|
|
setup_hifi_project(Quick Gui OpenGL)
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(shared octree gl gpu gpu-gl render model model-networking networking render-utils fbx entities entities-renderer animation audio avatars script-engine physics)
|
|
|
|
package_libraries_for_deployment()
|
|
|
|
|
|
target_bullet()
|