mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 13:22:36 +02:00
31 lines
910 B
CMake
31 lines
910 B
CMake
|
|
set(TARGET_NAME render-texture-load)
|
|
|
|
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_gli()
|
|
target_glm()
|
|
|
|
target_zlib()
|
|
add_dependency_external_projects(quazip)
|
|
find_package(QuaZip REQUIRED)
|
|
target_include_directories(${TARGET_NAME} SYSTEM PUBLIC ${QUAZIP_INCLUDE_DIRS})
|
|
target_link_libraries(${TARGET_NAME} ${QUAZIP_LIBRARIES})
|
|
|
|
if (WIN32)
|
|
add_paths_to_fixup_libs(${QUAZIP_DLL_PATH})
|
|
endif ()
|
|
|
|
|
|
target_bullet()
|