mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
433dbb0500
Closes #183
14 lines
308 B
TOML
14 lines
308 B
TOML
# Add Objective-C sources on Apple platforms:
|
|
|
|
[project]
|
|
name = "objective-c"
|
|
description = "Objective-C"
|
|
languages = ["C"]
|
|
apple.languages = ["OBJC"]
|
|
|
|
[target.hello]
|
|
type = "executable"
|
|
sources = ["src/main.c"]
|
|
apple.sources = ["src/apple.m"]
|
|
apple.link-libraries = ["$<LINK_LIBRARY:FRAMEWORK,Foundation>"]
|