Last active
August 26, 2020 06:24
-
-
Save Kairo-Dai/716d437ed58c7cefdb6690af42264c3b to your computer and use it in GitHub Desktop.
cmake
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
旧方法 | |
set(_THIS_MODULE_BASE_DIR "${CMAKE_CURRENT_LIST_DIR}") | |
function(foo) | |
configure_file( | |
"${_THIS_MODULE_BASE_DIR}/some.template.in" | |
some.output | |
) | |
endfunction() | |
新方法 | |
function(foo) | |
configure_file( | |
"${CMAKE_CURRENT_FUNCTION_LIST_DIR}/some.template.in" | |
some.output | |
) | |
endfunction() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment