forked from fargies/jenkins-tray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vproject
37 lines (33 loc) · 1.17 KB
/
.vproject
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
""
"" Vim project file
""
"" The availability of a '.vproject' file makes the following commands
"" available :
"" - :Configure - configure the project
"" - :make - compile the project
""
"" Fill the following variables in your project to configure it :
"" - g:makeprg: program to call to compile, defaults to 'make'
"" - g:build_dir: the directory to build the project, defaults to
"" '@PROJECT_DIR@/build'
"" - g:confprg: program to call to run configure, defaults to
"" '@PROJECT_DIR@/configure'
"" - g:confopts: configure options, defaults to ''
""
"" In the configured variables '@PROJECT_DIR@' tags are replaced by the
"" directory path where the '.vproject' file was found.
""
"" Configure and compile commands are run in the build directory.
""
"" Sample configuration for autotools
" let g:makeprg='make -s -j5'
" let g:build_dir='@PROJECT_DIR@/build'
" let g:confprg='@PROJECT_DIR@/configure'
" let g:confopts=''
"" Sample configuration for cmake
let g:makeprg='make -s -j5'
let g:build_dir='@PROJECT_DIR@/build'
let g:confprg='cmake @PROJECT_DIR@'
let g:confopts='-DTESTS=ON -DCMAKE_BUILD_TYPE=Debug'
set tags+=~/.vim/ctags/qt.tags
" vim:set ft=vim: