You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
684 B
36 lines
684 B
[project]
|
|
name = "vmdevirt"
|
|
|
|
[subdir.dependencies]
|
|
[target.vmdevirt]
|
|
type = "executable"
|
|
|
|
sources = [
|
|
"src/**.cpp",
|
|
"include/**.hpp",
|
|
]
|
|
include-directories = [
|
|
"include",
|
|
"dependencies/llvm/llvm/include/",
|
|
"dependencies/llvm/llvm/lib/Target/X86/",
|
|
"build/dependencies/llvm/llvm/lib/Target/X86",
|
|
"build/dependencies/llvm/llvm/include/",
|
|
]
|
|
link-libraries = [
|
|
"cli-parser",
|
|
"vmprofiler",
|
|
"LLVMCore",
|
|
"LLVMCodeGen",
|
|
"LLVMSupport",
|
|
"LLVMLinker",
|
|
"LLVMX86CodeGen",
|
|
"LLVMX86AsmParser",
|
|
"LLVMX86Desc",
|
|
"LLVMX86Disassembler",
|
|
"LLVMX86Info",
|
|
"LLVMAsmParser",
|
|
"LLVMPasses"
|
|
]
|
|
compile-definitions = [
|
|
"NOMINMAX"
|
|
] |