0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00
obs-studio/test/win/CMakeLists.txt
BtbN 45ec80fb7d Full rewrite of all CMakeLists
CMake now works on all platforms
2014-01-24 18:56:32 +01:00

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)