-
-
Save MambaWong/55760838805ac2efb965f845dddb5f79 to your computer and use it in GitHub Desktop.
ARGC, ARGV, ARGN, ARGVn in CMake
This file contains 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
cmake_minimum_required(VERSION 2.8) | |
function(use_llvm TARGET) | |
message("ARGC=\"${ARGC}\"") | |
message("ARGN=\"${ARGN}\"") | |
message("ARGV=\"${ARGV}\"") | |
message("ARGV0=\"${ARGV0}\"") | |
message("ARGV1=\"${ARGV1}\"") | |
endfunction() | |
add_custom_target(foo | |
COMMAND ls) | |
use_llvm(foo core bitwriter) | |
# Results: | |
# ARGC="3" | |
# ARGN="core;bitwriter" | |
# ARGV="foo;core;bitwriter" | |
# ARGV0="foo" | |
# ARGV1="core" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment