CMake/Tests/ObjC++/CMakeLists.txt

7 lines
156 B
CMake

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