17 lines
303 B
CMake
17 lines
303 B
CMake
project(distromatic)
|
|
|
|
cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR)
|
|
|
|
set(LOCALEDIR "${CMAKE_INSTALL_PREFIX}/share/locale")
|
|
|
|
file (STRINGS "VERSION" VERSION)
|
|
|
|
add_subdirectory(src)
|
|
add_subdirectory(po)
|
|
add_subdirectory(html)
|
|
|
|
install(
|
|
FILES distromatic.conf
|
|
DESTINATION ${SYSCONF_INSTALL_DIR}
|
|
)
|