2016-02-23 23:16:51 +00:00
|
|
|
project(osx-text)
|
|
|
|
|
|
|
|
include_directories(SYSTEM "${CMAKE_SOURCE_DIR}/libobs")
|
|
|
|
|
|
|
|
find_library(COCOA Cocoa)
|
|
|
|
include_directories(${COCOA})
|
|
|
|
|
|
|
|
add_definitions(-fobjc-arc)
|
|
|
|
|
|
|
|
set(osx-test_SOURCES
|
|
|
|
test.mm)
|
|
|
|
|
|
|
|
add_executable(osx_test
|
|
|
|
${osx-test_SOURCES})
|
2020-10-01 20:15:25 +00:00
|
|
|
set_target_properties(osx_test PROPERTIES FOLDER "tests and examples")
|
2016-02-23 23:16:51 +00:00
|
|
|
target_link_libraries(osx_test
|
|
|
|
libobs
|
|
|
|
${COCOA})
|
|
|
|
define_graphic_modules(osx_test)
|