diff options
| author | ruki <[email protected]> | 2020-04-05 14:46:14 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-04-05 14:46:14 +0800 |
| commit | d3c6cfe5fbaa95c72e4579ca884e3ddedd83e1fd (patch) | |
| tree | 323782c80ff4782ce28315e585a01c33a411b942 /tests/projects | |
| parent | 79ff6aed24ebfda2ecd4628b2237b75a003e347a (diff) | |
add objc/framework template
Diffstat (limited to 'tests/projects')
| -rw-r--r-- | tests/projects/objc/application/xmake.lua | 1 | ||||
| -rw-r--r-- | tests/projects/objc/bundle/xmake.lua | 1 | ||||
| -rw-r--r-- | tests/projects/objc/framework/xmake.lua | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/tests/projects/objc/application/xmake.lua b/tests/projects/objc/application/xmake.lua index 12f773a1d..c9a6c4b1c 100644 --- a/tests/projects/objc/application/xmake.lua +++ b/tests/projects/objc/application/xmake.lua @@ -4,3 +4,4 @@ target("test") add_rules("xcode.application") add_files("src/main.m") add_installfiles("src/Info.plist") + --set_values("xcode.codesign_identity", "Apple Development: [email protected] (T3NA4MRVPU)") diff --git a/tests/projects/objc/bundle/xmake.lua b/tests/projects/objc/bundle/xmake.lua index f184201e5..a469eedc9 100644 --- a/tests/projects/objc/bundle/xmake.lua +++ b/tests/projects/objc/bundle/xmake.lua @@ -4,4 +4,5 @@ target("test") add_rules("xcode.bundle") add_files("src/test.m") add_installfiles("src/Info.plist") + --set_values("xcode.codesign_identity", "Apple Development: [email protected] (T3NA4MRVPU)") diff --git a/tests/projects/objc/framework/xmake.lua b/tests/projects/objc/framework/xmake.lua index 530fa53f8..db5ad4044 100644 --- a/tests/projects/objc/framework/xmake.lua +++ b/tests/projects/objc/framework/xmake.lua @@ -5,6 +5,7 @@ target("test") add_files("src/test.m") add_headerfiles("src/*.h") add_installfiles("src/Info.plist") + --set_values("xcode.codesign_identity", "Apple Development: [email protected] (T3NA4MRVPU)") target("demo") set_kind("binary") |
