Fix cmake policy warning

test is a reserved name.
master
BtbN 2014-10-13 19:52:29 +02:00
parent 2e2b4a5e90
commit f105c93764
1 changed files with 4 additions and 4 deletions

View File

@ -7,11 +7,11 @@ include_directories(${COCOA})
add_definitions(-fobjc-arc)
set(osx-text_SOURCES
set(osx-test_SOURCES
test.mm)
add_executable(test
${osx-text_SOURCES})
target_link_libraries(test
add_executable(osx_test
${osx-test_SOURCES})
target_link_libraries(osx_test
libobs
${COCOA})