mirror of
https://github.com/overte-org/overte.git
synced 2025-07-26 08:15:21 +02:00
Merge pull request #15356 from NissimHadar/22096-addVHACDUtilToInstaller
Case 22096: Added vhacd-util and Oven to all installers.
This commit is contained in:
commit
4f9911a655
3 changed files with 11 additions and 9 deletions
|
@ -18,6 +18,4 @@ elseif (APPLE)
|
|||
set_target_properties(${TARGET_NAME} PROPERTIES INSTALL_RPATH "@executable_path/../Frameworks")
|
||||
endif()
|
||||
|
||||
if (BUILD_SERVER)
|
||||
install_beside_console()
|
||||
endif ()
|
||||
install_beside_console()
|
||||
|
|
|
@ -12,7 +12,9 @@ target_link_libraries(${TARGET_NAME} ${VHACD_LIBRARIES})
|
|||
|
||||
setup_memory_debugger()
|
||||
|
||||
if (UNIX AND NOT APPLE)
|
||||
if (WIN32)
|
||||
package_libraries_for_deployment()
|
||||
elseif (UNIX AND NOT APPLE)
|
||||
include(FindOpenMP)
|
||||
if(OPENMP_FOUND)
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}")
|
||||
|
@ -20,3 +22,5 @@ if (UNIX AND NOT APPLE)
|
|||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${OpenMP_EXE_LINKER_FLAGS}")
|
||||
endif()
|
||||
endif ()
|
||||
|
||||
install_beside_console()
|
||||
|
|
Loading…
Reference in a new issue