Skip to content

Commit 527593b

Browse files
authored
💚 add missing build file (#51)
1 parent a779c1f commit 527593b

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

‎.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ yarn-error.log
1111

1212
# Xcode
1313
#
14-
build/
14+
build
1515
*.pbxuser
1616
!default.pbxuser
1717
*.mode1v3
@@ -30,7 +30,7 @@ DerivedData
3030
project.xcworkspace
3131

3232
# Android/IntelliJ
33-
build/
33+
build
3434
.idea
3535
.gradle
3636
local.properties
@@ -52,5 +52,5 @@ buck-out/
5252
# Build
5353
dist
5454
package/lib
55-
5655
.vscode
56+
!package/script/build
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/src/cmake/BundleLibraries.cmake b/src/cmake/BundleLibraries.cmake
2+
index 046a6af10d..b349442562 100644
3+
--- a/src/cmake/BundleLibraries.cmake
4+
+++ b/src/cmake/BundleLibraries.cmake
5+
@@ -66,7 +66,7 @@ function(bundle_libraries output_target)
6+
endif()
7+
endforeach()
8+
9+
- add_library(${output_target} SHARED ${all_objects})
10+
+ add_library(${output_target} STATIC ${all_objects})
11+
12+
add_dependencies(${output_target} ${ARGN})
13+

0 commit comments

Comments
 (0)