-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60f4dd9
commit bb6057b
Showing
1 changed file
with
14 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,30 @@ | ||
cmake_minimum_required (VERSION 3.16) | ||
project (html) | ||
cmake_minimum_required(VERSION 3.16) | ||
project(html) | ||
|
||
set(SOURCES | ||
producer/html_cg_proxy.cpp | ||
producer/html_producer.cpp | ||
producer/html_cg_proxy.cpp | ||
producer/html_cg_proxy.h | ||
|
||
html.cpp | ||
) | ||
set(HEADERS | ||
producer/html_cg_proxy.h | ||
producer/html_producer.h | ||
producer/html_producer.cpp | ||
producer/html_producer.h | ||
|
||
html.h | ||
html.cpp | ||
html.h | ||
) | ||
|
||
casparcg_add_module_project(html | ||
SOURCES ${SOURCES} ${HEADERS} | ||
INIT_FUNCTION "html::init" | ||
UNINIT_FUNCTION "html::uninit" | ||
CLI_INTERCEPTOR "html::intercept_command_line" | ||
casparcg_add_module_project(html SOURCES ${SOURCES} | ||
INIT_FUNCTION "html::init" | ||
UNINIT_FUNCTION "html::uninit" | ||
CLI_INTERCEPTOR "html::intercept_command_line" | ||
) | ||
target_link_libraries(html CEF::CEF) | ||
|
||
# TODO: remove when appropriate | ||
target_include_directories(html PRIVATE | ||
.. | ||
../.. | ||
) | ||
|
||
target_link_libraries(html CEF::CEF) | ||
|
||
set_target_properties(html PROPERTIES FOLDER modules) | ||
source_group(sources\\producer producer/*) | ||
source_group(sources ./*) |