mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:19:00 +08:00
0bee296e72
* 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>
20 lines
448 B
Diff
20 lines
448 B
Diff
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
|