Skip to content

Commit 101a38d

Browse files
committed
workflow on release/call
1 parent 221bb84 commit 101a38d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "Build & Test"
2-
on: [push, pull_request]
2+
on: [push, pull_request, release, workflow_call]
33

4-
jobs:
4+
jobs:
55
macOS:
66
runs-on: macos-latest
77
timeout-minutes: 30

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Lua HTTPS
2+
3+
## Compile on MacOS
4+
5+
6+
```sh
7+
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_CXX_FLAGS="-fobjc-arc -std=c++11 -stdlib=libc++" cmake --build build --target install
8+
```
9+

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ if (USE_NSURL_BACKEND)
154154
https-nsurl
155155
PROPERTIES
156156
MACOSX_BUNDLE YES
157-
XCODE_ATTRIBUTE_CLANG_ENABLE_OBJC_ARC YES
157+
XCODE_ATTRIBUTE_CLANG_ENABLE_OBJC_ARC YES
158158
)
159159
target_link_libraries (https "-framework Foundation")
160160
target_link_libraries (https https-nsurl)

0 commit comments

Comments
 (0)