This repository has been archived by the owner on Jun 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
56 lines (53 loc) · 1.58 KB
/
project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: lurk
options:
bundleIdPrefix: io.github.takeiteasy
createIntermediateGroups: true
deploymentTarget:
macOS: "12.0"
settings:
CLANG_CXX_LANGUAGE_STANDARD: c++11
CLANG_CXX_LIBRARY: libc++
GCC_C_LANGUAGE_STANDARD: c11
CLANG_WARN_DOCUMENTATION_COMMENTS: false
targets:
lurk:
type: tool
platform: macOS
sources:
- path: tools/
type: folder
- path: build/
type: folder
- path: Makefile
- path: project.yml
- path: README.md
- path: scenes/config.h
- path: lurk/
excludes:
- "deps/"
- path: lurk/deps/
type: folder
- path: lurk/deps/gamepad/Gamepad_private.c
- path: lurk/deps/gamepad/Gamepad_macosx.c
dependencies:
- sdk: Cocoa.framework
- sdk: Metal.framework
- sdk: MetalKit.framework
- sdk: Quartz.framework
- sdk: CoreServices.framework
- sdk: CoreFoundation.framework
- sdk: IOKit.framework
settings:
HEADER_SEARCH_PATHS: [$(PROJECT_DIR)/lurk, $(PROJECT_DIR)/lurk/deps, $(PROJECT_DIR)/scenes]
OTHER_CFLAGS: ["-x objective-c", -DSOKOL_METAL, -fno-objc-arc, -fenable-matrix]
test:
type: library.dynamic
platform: macOS
sources:
- path: scenes/test.c
- path: lurk/
excludes:
- "deps/"
settings:
HEADER_SEARCH_PATHS: [$(PROJECT_DIR)/lurk, $(PROJECT_DIR)/lurk/deps, $(PROJECT_DIR)/scenes]
OTHER_CFLAGS: ["-x objective-c", -DSOKOL_METAL, -fno-objc-arc, -fenable-matrix, -DSOKOL_NO_ENTRY, -DLURK_SCENE]