File tree Expand file tree Collapse file tree 1 file changed +14
-17
lines changed Expand file tree Collapse file tree 1 file changed +14
-17
lines changed Original file line number Diff line number Diff line change 1
- cmake_minimum_required (VERSION 3.16 )
2
- project (html )
1
+ cmake_minimum_required (VERSION 3.16 )
2
+ project (html )
3
3
4
4
set (SOURCES
5
- producer/html_cg_proxy.cpp
6
- producer/html_producer.cpp
5
+ producer/html_cg_proxy.cpp
6
+ producer/html_cg_proxy.h
7
7
8
- html.cpp
9
- )
10
- set (HEADERS
11
- producer/html_cg_proxy.h
12
- producer/html_producer.h
8
+ producer/html_producer.cpp
9
+ producer/html_producer.h
13
10
14
- html.h
11
+ html.cpp
12
+ html.h
15
13
)
16
14
17
- casparcg_add_module_project (html
18
- SOURCES ${SOURCES} ${HEADERS}
19
- INIT_FUNCTION "html::init"
20
- UNINIT_FUNCTION "html::uninit"
21
- CLI_INTERCEPTOR "html::intercept_command_line"
15
+ casparcg_add_module_project (html SOURCES ${SOURCES}
16
+ INIT_FUNCTION "html::init"
17
+ UNINIT_FUNCTION "html::uninit"
18
+ CLI_INTERCEPTOR "html::intercept_command_line"
22
19
)
20
+ target_link_libraries (html CEF::CEF )
23
21
22
+ # TODO: remove when appropriate
24
23
target_include_directories (html PRIVATE
25
24
..
26
25
../..
27
26
)
28
27
29
- target_link_libraries (html CEF::CEF )
30
-
31
28
set_target_properties (html PROPERTIES FOLDER modules )
32
29
source_group (sources \\producer producer/* )
33
30
source_group (sources ./* )
You can’t perform that action at this time.
0 commit comments