Created
March 29, 2024 14:27
-
-
Save ycnakajsph/59032bc012bcc6afd1f7d46ad70413cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Defining main-target | |
... | |
add_custom_target(generate_version_header | |
COMMAND ${CMAKE_COMMAND} | |
-DVERSION_TEMPLATE:STRING=version.hpp.in | |
-DVERSION_FILE:STRING=version.hpp | |
-DSOURCE_DIR:STRING=${CMAKE_SOURCE_DIR} | |
-P ${CMAKE_SOURCE_DIR}/generate_version_header.cmake | |
COMMENT "Generating version header" | |
) | |
add_dependencies(main-target generate_version_header) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment