Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 689 Bytes

File metadata and controls

30 lines (23 loc) · 689 Bytes
layout default
title Objective-C
permalink /examples/objective-c
parent Examples
nav_order 11

Objective-C

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>"]

This page was automatically generated from tests/objective-c/cmake.toml.