12 lines
202 B
CMake
12 lines
202 B
CMake
|
project(win-test)
|
||
|
|
||
|
include_directories(SYSTEM "${CMAKE_SOURCE_DIR}/libobs")
|
||
|
|
||
|
set(win-text_SOURCES
|
||
|
test.cpp)
|
||
|
|
||
|
add_executable(win-test WIN32
|
||
|
${win-text_SOURCES})
|
||
|
target_link_libraries(win-test
|
||
|
libobs)
|