14 lines
306 B
CMake
14 lines
306 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)
|
|
set_target_properties(win-test PROPERTIES FOLDER "tests and examples")
|
|
define_graphic_modules(win-test)
|