This repository has been archived on 2021-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
backend/src/generators/CMakeLists.txt

11 lines
221 B
CMake
Raw Normal View History

2020-07-02 08:09:58 +02:00
include(GNUInstallDirs)
add_executable(gen_html html.cpp)
target_link_libraries(gen_html
PRIVATE fediblock)
install(TARGETS gen_html
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
RENAME ${PROJECT_NAME}-gen_html)