aboutsummaryrefslogtreecommitdiff
path: root/ports/forge/fix-static_build.patch
diff options
context:
space:
mode:
authorpradeep <pradeep.garigipati@gmail.com>2021-05-11 23:09:03 +0530
committerGitHub <noreply@github.com>2021-05-11 10:39:03 -0700
commit48678ea8b27e697ca613b6f1abff75f0984f370b (patch)
treee9398e770404346902fae2b1289552e750ba7718 /ports/forge/fix-static_build.patch
parent56a5c2ac52835bcdfe5962568cf1e61376a1dd82 (diff)
downloadvcpkg-48678ea8b27e697ca613b6f1abff75f0984f370b.tar.gz
vcpkg-48678ea8b27e697ca613b6f1abff75f0984f370b.zip
[Forge] update version to 1.0.7 (#17099)
* [forge] Update forge to v1.0.7 tag - Use explicit cmake files install path - Use REF option in vcpkg_from_github command to fetch tag * [forge] Update version in baseline
Diffstat (limited to 'ports/forge/fix-static_build.patch')
-rw-r--r--ports/forge/fix-static_build.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/ports/forge/fix-static_build.patch b/ports/forge/fix-static_build.patch
deleted file mode 100644
index 67f498cd8..000000000
--- a/ports/forge/fix-static_build.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/extern/glad/CMakeLists.txt b/extern/glad/CMakeLists.txt
-index c8c8d86..27adf86 100644
---- a/extern/glad/CMakeLists.txt
-+++ b/extern/glad/CMakeLists.txt
-@@ -2,15 +2,19 @@ add_library(forge_glad_interface INTERFACE)
-
- target_include_directories(forge_glad_interface
- INTERFACE
-- ${CMAKE_CURRENT_SOURCE_DIR}/include
-+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
- )
-
- target_sources(forge_glad_interface
- INTERFACE
-- ${CMAKE_CURRENT_SOURCE_DIR}/src/glad.c
-+ $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/glad.c>
- )
-
- target_link_libraries(forge_glad_interface
- INTERFACE
-- ${CMAKE_DL_LIBS}
-+ $<BUILD_INTERFACE:${CMAKE_DL_LIBS}>
- )
-+
-+if (NOT BUILD_SHARED_LIBS)
-+ install(TARGETS forge_glad_interface EXPORT ForgeTargets)
-+endif ()
-\ No newline at end of file