aboutsummaryrefslogtreecommitdiff
path: root/ports/gasol/fix-install.patch
diff options
context:
space:
mode:
authorMayank Kataruka <37381526+mayankkt9@users.noreply.github.com>2020-05-07 12:36:44 -0700
committerGitHub <noreply@github.com>2020-05-07 12:36:44 -0700
commit0bee296e721e9282999c60784ac80440dd157785 (patch)
tree17e8d70b3c478af2c0db8174575852d2a514f916 /ports/gasol/fix-install.patch
parent164284d86be7590f0162a18f9189eded1caa5374 (diff)
downloadvcpkg-0bee296e721e9282999c60784ac80440dd157785.tar.gz
vcpkg-0bee296e721e9282999c60784ac80440dd157785.zip
[gasol] Add new port (#9550)
* Added new port GASol * added patch file * Code Refactoring * Code Refactoring to change port name * Updated baseline to resolve file conflicts with nanovg and stb * Added changes to ci-baseline and added port not supported on arm/uwp * [gasol] Use cmake to build * update baseline Co-authored-by: SanaJahan <sanadgrt@gmail.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Diffstat (limited to 'ports/gasol/fix-install.patch')
-rw-r--r--ports/gasol/fix-install.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/ports/gasol/fix-install.patch b/ports/gasol/fix-install.patch
new file mode 100644
index 000000000..5d2be99d7
--- /dev/null
+++ b/ports/gasol/fix-install.patch
@@ -0,0 +1,19 @@
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 0cba691..51e47a3 100644
+--- a/src/CMakeLists.txt
++++ b/src/CMakeLists.txt
+@@ -1,3 +1,13 @@
+ file(GLOB GASol_SRC *.cpp)
+ add_library(GASol STATIC ${GASol_SRC})
+
++file(GLOB GASol_INCLUDES *.h)
++
++install(FILES ${GASol_INCLUDES} DESTINATION include)
++
++install(
++ TARGETS GASol
++ RUNTIME DESTINATION bin
++ LIBRARY DESTINATION lib
++ ARCHIVE DESTINATION lib
++)
+\ No newline at end of file