CMake/Tests/ObjC++/CMakeLists.txt

7 lines
156 B
CMake
Raw Normal View History

2002-11-27 00:01:51 +00:00
# a simple objc++ test case that uses Cocoa framework
project (ObjC++)
2002-11-27 00:01:51 +00:00
add_executable (ObjC++ objc++.mm)
target_link_libraries(ObjC++ "-framework Cocoa")
2002-11-27 00:01:51 +00:00