25 lines
709 B
Lua
25 lines
709 B
Lua
--- Generate compile_commands.json for clangd language server
|
|
add_rules("plugin.compile_commands.autoupdate", {outputdir = ".vscode"})
|
|
--- Get C/C++ Lib Path
|
|
local INCLUDE_DIRS = path.splitenv(
|
|
string.vformat("$(env VERILATOR_INCLUDE):$(env SYSTEMC_INCLUDE):$(env CMAKE_INCLUDE_PATH)")
|
|
)
|
|
|
|
target("TB_ISP")
|
|
set_toolchains("gcc")
|
|
set_languages("c++17")
|
|
--- C/C++ Codes
|
|
add_files(
|
|
"src/**.cpp"
|
|
)
|
|
--- Include directories
|
|
add_includedirs(
|
|
".",
|
|
"src",
|
|
"build/CMakeFiles/Visp_Pipeline.dir/Visp_Pipeline.dir",
|
|
"build/CMakeFiles/Visp.dir/Visp.dir",
|
|
"build/CMakeFiles/VWindows.dir/VWindows_tb.dir",
|
|
"src/img_process",
|
|
INCLUDE_DIRS
|
|
)
|
|
add_defines("SPDLOG_FMT_EXTERNAL") |