2022-10-03 07:12:38 +00:00
|
|
|
|
|
|
|
list(APPEND website_generator_LIB_INCLUDES
|
|
|
|
ContentFile.h
|
|
|
|
ContentFile.cpp
|
2022-12-05 13:16:10 +00:00
|
|
|
ContentPage.h
|
|
|
|
ContentPage.cpp
|
2022-10-03 07:12:38 +00:00
|
|
|
MarkdownContentParser.h
|
2022-10-03 07:46:41 +00:00
|
|
|
MarkdownContentParser.cpp
|
2022-12-05 13:16:10 +00:00
|
|
|
SiteGeneratorConfig.h
|
|
|
|
SiteGeneratorConfig.cpp
|
2022-10-03 07:46:41 +00:00
|
|
|
WebsiteGenerator.h
|
2022-12-05 13:16:10 +00:00
|
|
|
WebsiteGenerator.cpp
|
|
|
|
)
|
2022-10-03 07:12:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
add_executable(website_generator main.cpp ${website_generator_LIB_INCLUDES})
|
|
|
|
|
|
|
|
target_include_directories(website_generator PUBLIC
|
2022-12-05 13:16:10 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
2022-10-03 07:12:38 +00:00
|
|
|
)
|
|
|
|
|
2022-12-05 13:16:10 +00:00
|
|
|
target_link_libraries(website_generator PUBLIC core web compiler)
|
2022-10-03 07:12:38 +00:00
|
|
|
|
|
|
|
set_property(TARGET website_generator PROPERTY FOLDER apps/website-generator)
|
|
|
|
|