vcpkg/ports/joltphysics/fix-export.diff

63 lines
2.3 KiB
Diff
Raw Normal View History

diff --git a/Build/CMakeLists.txt b/Build/CMakeLists.txt
2024-04-06 08:20:31 +08:00
index 830453f..5c9f155 100644
--- a/Build/CMakeLists.txt
+++ b/Build/CMakeLists.txt
2024-04-06 08:20:31 +08:00
@@ -122,8 +122,8 @@ if (MSVC)
endif()
# Set compiler flags for various configurations
- set(CMAKE_CXX_FLAGS_DEBUG "/GS /Od /Ob0 /RTC1")
- set(CMAKE_CXX_FLAGS_RELEASE "/GS- /Gy /O2 /Oi /Ot")
+ set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /GS /Od /Ob0 /RTC1")
+ set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /GS- /Gy /O2 /Oi /Ot")
set(CMAKE_CXX_FLAGS_DISTRIBUTION "/GS- /Gy /O2 /Oi /Ot")
set(CMAKE_CXX_FLAGS_RELEASEASAN "-fsanitize=address /Od")
set(CMAKE_CXX_FLAGS_RELEASEUBSAN "-fsanitize=undefined,implicit-conversion,float-divide-by-zero,local-bounds -fno-sanitize-recover=all")
2024-04-06 08:20:31 +08:00
@@ -232,7 +232,11 @@ if (XCODE)
endif()
# Install Jolt library and includes
-install(TARGETS Jolt DESTINATION lib)
+install(TARGETS Jolt
+ EXPORT unofficial-joltphysics-targets
+ ARCHIVE DESTINATION lib
+ LIBRARY DESTINATION lib
+ RUNTIME DESTINATION bin)
foreach(SRC_FILE ${JOLT_PHYSICS_SRC_FILES})
string(REPLACE ${PHYSICS_REPO_ROOT} "" RELATIVE_SRC_FILE ${SRC_FILE})
get_filename_component(DESTINATION_PATH ${RELATIVE_SRC_FILE} DIRECTORY)
2024-04-06 08:20:31 +08:00
@@ -241,6 +245,17 @@ foreach(SRC_FILE ${JOLT_PHYSICS_SRC_FILES})
endif()
endforeach()
+install(EXPORT unofficial-joltphysics-targets
+ NAMESPACE unofficial::joltphysics::
+ FILE unofficial-joltphysics-targets.cmake
+ DESTINATION share/unofficial-joltphysics
+)
+
+install(FILES
+ unofficial-joltphysics-config.cmake
+ DESTINATION share/unofficial-joltphysics
+)
+
# Check if we're the root CMakeLists.txt, if not we are included by another CMake file and we should disable everything except for the main library
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
# Ability to turn ON/OFF individual applications
diff --git a/Jolt/Jolt.cmake b/Jolt/Jolt.cmake
2024-04-06 08:20:31 +08:00
index 2b28284..43912a5 100644
--- a/Jolt/Jolt.cmake
+++ b/Jolt/Jolt.cmake
2024-04-06 08:20:31 +08:00
@@ -487,7 +487,10 @@ if (BUILD_SHARED_LIBS)
target_compile_definitions(Jolt PRIVATE JPH_BUILD_SHARED_LIBRARY)
endif()
-target_include_directories(Jolt PUBLIC ${PHYSICS_REPO_ROOT})
+target_include_directories(Jolt PUBLIC
+ $<BUILD_INTERFACE:${PHYSICS_REPO_ROOT}>
+ $<INSTALL_INTERFACE:include>
+)
target_precompile_headers(Jolt PRIVATE ${JOLT_PHYSICS_ROOT}/Jolt.h)
2024-04-06 08:20:31 +08:00
# Set the debug/non-debug build flags