-
Notifications
You must be signed in to change notification settings - Fork 0
Home
KoishiChan edited this page Sep 29, 2019
·
5 revisions
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.