2016-09-11 10:25:26 -07:00
|
|
|
if (NOT WIN32)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
project(obs-text)
|
|
|
|
|
|
|
|
if(WIN32)
|
2019-06-16 04:42:58 -07:00
|
|
|
set(MODULE_DESCRIPTION "OBS GDI+ text module")
|
|
|
|
configure_file(${CMAKE_SOURCE_DIR}/cmake/winrc/obs-module.rc.in obs-text.rc)
|
2016-09-11 10:25:26 -07:00
|
|
|
set(obs-text_PLATFORM_SOURCES
|
2019-06-16 04:42:58 -07:00
|
|
|
gdiplus/obs-text.cpp
|
|
|
|
obs-text.rc)
|
2016-09-11 10:25:26 -07:00
|
|
|
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)
|