cmake/Tests/ObjCXX/ObjC++/CMakeLists.txt
2020-02-01 23:06:01 +01:00

6 lines
155 B
CMake

# a simple objc++ test case that uses Cocoa framework
project (ObjC++)
add_executable (ObjC++ objc++.mm)
target_link_libraries(ObjC++ "-framework Cocoa")