0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00
obs-studio/plugins/obs-text/CMakeLists.txt
2016-09-14 16:59:46 -07:00

22 lines
367 B
CMake

if (NOT WIN32)
return()
endif()
project(obs-text)
if(WIN32)
set(obs-text_PLATFORM_SOURCES
gdiplus/obs-text.cpp)
set(obs-text_PLATFORM_DEPS
gdiplus)
endif()
add_library(obs-text MODULE
${obs-text_PLATFORM_SOURCES}
${obs-text_PLATFORM_HEADERS})
target_link_libraries(obs-text
libobs
${obs-text_PLATFORM_DEPS})
install_obs_plugin_with_data(obs-text data)