mirror of
https://github.com/reactos/CMake.git
synced 2025-04-03 15:51:36 +00:00

It is quite often the project description has used in a real world software. Examples include: * part of a help screen of the application * builtin resources (`*.rc` files, data for "About" dialog of a GUI app, & etc) * most generators for CPack can use it * it could be used by documentary software (Doxygen, Sphinx) which is usually integrated to CMake based projects via `add_custom_target()` Now `project()` call learned an optional `DESCRIPTION` parameter with a short string describing a project. Being specified, it would set the `PROJECT_DESCRIPTION` variable which could be used in `configure_file()` or whatever user wants. Also `PROJECT_DESCRIPTION` is a default value for `CPACK_PACKAGE_DESCRIPTION_SUMMARY`.
7 lines
274 B
CMake
7 lines
274 B
CMake
cmake_policy(SET CMP0048 NEW)
|
|
project(ProjectDescriptionTest VERSION 1.0.0 DESCRIPTION "Test Project" LANGUAGES)
|
|
if(NOT PROJECT_DESCRIPTION)
|
|
message(FATAL_ERROR "PROJECT_DESCRIPTION expected to be set")
|
|
endif()
|
|
message(STATUS "PROJECT_DESCRIPTION=${PROJECT_DESCRIPTION}")
|