Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Kairo-Dai/716d437ed58c7cefdb6690af42264c3b to your computer and use it in GitHub Desktop.
Save Kairo-Dai/716d437ed58c7cefdb6690af42264c3b to your computer and use it in GitHub Desktop.
cmake
旧方法
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