update goals

This commit is contained in:
Stefan Liebl 2023-08-24 18:49:15 +02:00
parent 525874c9de
commit a02732111e

View File

@ -77,7 +77,7 @@ function s:ProjectSet(project_type, project_base_dir)
let g:ProgramRemote = '/opt/app/bin/device-control' let g:ProgramRemote = '/opt/app/bin/device-control'
set wildignore-=**/firmware/src/device-control/** set wildignore-=**/firmware/src/device-control/**
set wildignore+=**/shg-firmware/** set wildignore+=**/shg-firmware/**
let s:makegoals = ['artifacts-firmware', 'artifacts', 'device-control', 'user-interface', 'doxygen', 'fw-updates', 'shg-firmware', 'can-updater', 'specalyser', 'docu-ul0', 'code-generation', 'dependency-graphs', 'decof', 'decof-sdk', 'clean', 'distclean', 'help', 'jamplayer', 'dlcpro-slot'] let s:makegoals = ['artifacts-firmware', 'artifacts-docu', 'artifacts', 'device-control', 'user-interface', 'doxygen', 'fw-updates', 'shg-firmware', 'can-updater', 'specalyser', 'docu-ul0', 'code-generation', 'dependency-graphs', 'decof', 'decof-sdk', 'clean', 'distclean', 'help', 'jamplayer', 'dlcpro-slot']
let s:makeprg = 'make' let s:makeprg = 'make'
let g:DeviceIP = 'DLC_PRO__040083' let g:DeviceIP = 'DLC_PRO__040083'
let g:DebugRemote = v:true let g:DebugRemote = v:true
@ -289,6 +289,7 @@ function s:ProjectSet(project_type, project_base_dir)
\'-DCMAKE_BUILD_TYPE=RelWithDebInfo', \'-DCMAKE_BUILD_TYPE=RelWithDebInfo',
\'-DHARDWARE_DLCSMART=ON', \'-DHARDWARE_DLCSMART=ON',
\'-DMOCK_ALL_CAN_DEVICES=ON', \'-DMOCK_ALL_CAN_DEVICES=ON',
\'-DNEW_COMPILER=ON',
\'-DUNIT_TESTING', \'-DUNIT_TESTING',
\], "\n") \], "\n")
endfunction endfunction
@ -387,7 +388,6 @@ function s:Cmake(options, async_mode)
if (g:project_type == 'dlcpro') if (g:project_type == 'dlcpro')
let args .= " -DCMAKE_TOOLCHAIN_FILE=../".g:ProjectSrcDirRel."/Toolchain-target.cmake" let args .= " -DCMAKE_TOOLCHAIN_FILE=../".g:ProjectSrcDirRel."/Toolchain-target.cmake"
let args .= " -DBUILD_TARGET=target" let args .= " -DBUILD_TARGET=target"
let args .= " -DQT5_INSTALL_PATH=dlcpro-sdk/sysroot-target/usr/local/Qt-5.4.1"
elseif (g:project_type == 'dlcpro-tui') elseif (g:project_type == 'dlcpro-tui')
let args .= " -DBUILD_TARGET=simulation" let args .= " -DBUILD_TARGET=simulation"
let args .= " -DQT5_INSTALL_PATH=/usr/lib/x86_64-linux-gnu/qt5" let args .= " -DQT5_INSTALL_PATH=/usr/lib/x86_64-linux-gnu/qt5"