We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the VMUtils wiki!
Module installation:
# install build scripts find_package(Git) execute_process(COMMAND ${GIT_EXECUTABLE} submodule update --init --recursive) # install external modules include(scripts/external.cmake) vm_external_module( GIT_REPOSITORY https://github.com/cad420/VMUtils GIT_TAG master )
Add target dependency
add_executable(my_executable) vm_target_dependency(my_executable VMUtils PRIVATE) add_library(my_library) vm_target_dependency(my_library VMUtils PUBLIC)
See Facilities for usage.