path-shortener/CMakeLists.txt
Simon From Jakobsen eae18257d7 init
2024-07-16 10:52:13 +00:00

17 lines
385 B
CMake

cmake_minimum_required(VERSION 3.29)
project(path-shortener VERSION 0.0.0 LANGUAGES C)
add_executable(shortpath main.c)
install(TARGETS shortpath)
set(CPACK_PACKAGE_NAME path-shortener)
set(CPACK_PACKAGE_VENDOR simon)
set(CPACK_PACKAGE_DESCRIPTION "CWD path but short")
set(CPACK_PACKAGE_INSTALL_DIRECTORY ${CPACK_PACKAGE_NAME})
set(CPACK_VERBATIM_VARIABLES TRUE)
include(CPack)