Skip to content

Commit 5b8f462

Browse files
authored
Merge pull request #1 from LiquidPlayer/master
Merge in 0.7.8
2 parents ab949ea + b6ebaea commit 5b8f462

195 files changed

Lines changed: 11174 additions & 1325 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@
1111
/projectFilesBackup
1212
.DS_Store
1313
*.DS_Store
14-
.settings
14+
.settings
15+
/node_modules
16+
/github.properties

.npmignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.idea
2+
*.iml
3+
.gradle
4+
/local.properties
5+
/.idea/workspace.xml
6+
/.idea/libraries
7+
/.idea/caches
8+
.DS_Store
9+
/build
10+
/captures
11+
/projectFilesBackup
12+
.DS_Store
13+
*.DS_Store
14+
.settings
15+
/node_modules
16+
/github.properties
17+
18+
deps/
19+
gradlew
20+
gradlew.bat
21+
LiquidCore/
22+
LiquidV8/
23+
doc/
24+
gradle/
25+
gradle.properties
26+
settings.gradle
27+
.project
28+
build.gradle
29+
*.tgz

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2014 - 2018 LiquidPlayer
3+
Copyright (c) 2014 - 2020 LiquidPlayer
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

LiquidCore-headers.podspec

Lines changed: 68 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ Pod::Spec.new do |s|
88
s.version = version
99
s.summary = "Header include files for LiquidCore."
1010
s.description = <<-DESC
11-
Header include files for LiquidCore. To use in a native addon, add "${PODS_CONFIGURATION_BUILD_DIR}/LiquidCore-headers/LiquidCore_headers.framework/PrivateHeaders" to your header search path.
11+
Header include files for LiquidCore addons. To use in a native addon,
12+
add "${PODS_CONFIGURATION_BUILD_DIR}/LiquidCore-headers/LiquidCore_headers.framework/PrivateHeaders"
13+
to your header search path.
1214
DESC
1315
s.homepage = "https://github.com/LiquidPlayer/LiquidCore"
1416
s.license = {:type => "MIT", :file => "LICENSE.md"}
@@ -20,15 +22,75 @@ Header include files for LiquidCore. To use in a native addon, add "${PODS_CONF
2022
CMD
2123
s.source_files =
2224
"LiquidCore/src/ios/gen/include/*.h",
23-
"LiquidCore/src/ios/gen/include/**/*.h",
25+
"LiquidCore/src/ios/gen/include/uv/*.h",
26+
"LiquidCore/src/ios/gen/include/uv/uv/errno.h",
27+
"LiquidCore/src/ios/gen/include/uv/uv/aix.h",
28+
"LiquidCore/src/ios/gen/include/uv/uv/android-ifaddrs.h",
29+
"LiquidCore/src/ios/gen/include/uv/uv/bsd.h",
30+
"LiquidCore/src/ios/gen/include/uv/uv/darwin.h",
31+
"LiquidCore/src/ios/gen/include/uv/uv/linux.h",
32+
"LiquidCore/src/ios/gen/include/uv/uv/os390.h",
33+
"LiquidCore/src/ios/gen/include/uv/uv/posix.h",
34+
"LiquidCore/src/ios/gen/include/uv/uv/stdint-msvc2008.h",
35+
"LiquidCore/src/ios/gen/include/uv/uv/sunos.h",
36+
"LiquidCore/src/ios/gen/include/uv/uv/threadpool.h",
37+
"LiquidCore/src/ios/gen/include/uv/uv/tree.h",
38+
"LiquidCore/src/ios/gen/include/uv/uv/unix.h",
39+
"LiquidCore/src/ios/gen/include/uv/uv/version.h",
40+
"LiquidCore/src/ios/gen/include/uv/uv/win.h",
41+
"LiquidCore/src/ios/gen/include/node/*.h",
42+
"LiquidCore/src/ios/gen/include/node/inspector/**/*.h",
43+
"LiquidCore/src/ios/gen/include/node/large_pages/**/*.h",
44+
"LiquidCore/src/ios/gen/include/node/tracing/**/*.h",
45+
"LiquidCore/src/ios/gen/include/v8/*.h",
46+
"LiquidCore/src/ios/gen/include/v8/libplatform/**/*.h",
47+
"LiquidCore/src/ios/gen/include/openssl/**/*.h",
48+
"LiquidCore/src/ios/gen/include/http_parser/*.h",
49+
"LiquidCore/src/ios/gen/include/nghttp2/*.h",
50+
"LiquidCore/src/ios/gen/include/cares/*.h",
2451
"LiquidCore/src/ios/header-dummy.cc"
2552
s.private_header_files = [
2653
"LiquidCore/src/ios/gen/include/*.h",
27-
"LiquidCore/src/ios/gen/include/**/*.h",
54+
"LiquidCore/src/ios/gen/include/uv/*.h",
55+
"LiquidCore/src/ios/gen/include/uv/uv/errno.h",
56+
"LiquidCore/src/ios/gen/include/uv/uv/aix.h",
57+
"LiquidCore/src/ios/gen/include/uv/uv/android-ifaddrs.h",
58+
"LiquidCore/src/ios/gen/include/uv/uv/bsd.h",
59+
"LiquidCore/src/ios/gen/include/uv/uv/darwin.h",
60+
"LiquidCore/src/ios/gen/include/uv/uv/linux.h",
61+
"LiquidCore/src/ios/gen/include/uv/uv/os390.h",
62+
"LiquidCore/src/ios/gen/include/uv/uv/posix.h",
63+
"LiquidCore/src/ios/gen/include/uv/uv/stdint-msvc2008.h",
64+
"LiquidCore/src/ios/gen/include/uv/uv/sunos.h",
65+
"LiquidCore/src/ios/gen/include/uv/uv/threadpool.h",
66+
"LiquidCore/src/ios/gen/include/uv/uv/tree.h",
67+
"LiquidCore/src/ios/gen/include/uv/uv/unix.h",
68+
"LiquidCore/src/ios/gen/include/uv/uv/version.h",
69+
"LiquidCore/src/ios/gen/include/uv/uv/win.h",
70+
"LiquidCore/src/ios/gen/include/node/*.h",
71+
"LiquidCore/src/ios/gen/include/node/inspector/**/*.h",
72+
"LiquidCore/src/ios/gen/include/node/large_pages/**/*.h",
73+
"LiquidCore/src/ios/gen/include/node/tracing/**/*.h",
74+
"LiquidCore/src/ios/gen/include/v8/*.h",
75+
"LiquidCore/src/ios/gen/include/v8/libplatform/**/*.h",
76+
"LiquidCore/src/ios/gen/include/openssl/**/*.h",
77+
"LiquidCore/src/ios/gen/include/http_parser/*.h",
78+
"LiquidCore/src/ios/gen/include/nghttp2/*.h",
79+
"LiquidCore/src/ios/gen/include/cares/*.h",
2880
]
29-
s.header_mappings_dir = 'LiquidCore/src/ios/gen/include'
81+
s.header_mappings_dir = "LiquidCore/src/ios/gen/include"
82+
s.preserve_paths = "LiquidCore/src/ios/gen/include/uv/uv/errno.h"
3083
s.xcconfig = {
3184
:CLANG_WARN_DOCUMENTATION_COMMENTS => 'NO',
32-
:HEADER_SEARCH_PATHS => "$(PODS_TARGET_SRCROOT)/LiquidCore/src/ios/gen/include"
85+
:GCC_WARN_UNUSED_FUNCTION => 'NO',
86+
:HEADER_SEARCH_PATHS => [
87+
"$(PODS_TARGET_SRCROOT)/LiquidCore/src/ios/gen/include",
88+
"$(PODS_TARGET_SRCROOT)/LiquidCore/src/ios/gen/include/uv",
89+
"$(PODS_TARGET_SRCROOT)/LiquidCore/src/ios/gen/include/v8",
90+
"$(PODS_TARGET_SRCROOT)/LiquidCore/src/ios/gen/include/cares",
91+
"$(PODS_TARGET_SRCROOT)/LiquidCore/src/ios/gen/include/http_parser",
92+
"$(PODS_TARGET_SRCROOT)/LiquidCore/src/ios/gen/include/nghttp2",
93+
"$(PODS_TARGET_SRCROOT)/LiquidCore/src/ios/gen/include/node",
94+
].join(' ')
3395
}
34-
end
96+
end

0 commit comments

Comments
 (0)