Migrated some old-style build_settings to new-style build-menu
This commit is contained in:
parent
7a0285eef8
commit
961ccf38c5
@ -78,18 +78,19 @@ context_action_cmd=
|
||||
# 0 is spaces, 1 is tabs, 2 is tab & spaces
|
||||
#type=1
|
||||
|
||||
[build_settings]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
compiler=gcc -Wall -c "%f"
|
||||
linker=gcc -Wall -o "%e" "%f"
|
||||
run_cmd="./%e"
|
||||
|
||||
[build-menu]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
FT_00_LB=_Compile
|
||||
FT_00_CM=gcc -Wall -c "%f"
|
||||
FT_00_WD=
|
||||
FT_01_LB=_Build
|
||||
FT_01_CM=gcc -Wall -o "%e" "%f"
|
||||
FT_01_WD=
|
||||
FT_02_LB=_Lint
|
||||
FT_02_CM=cppcheck --language=c --enable=warning,style --template=gcc "%f"
|
||||
FT_02_WD=
|
||||
EX_00_LB=_Execute
|
||||
EX_00_CM="./%e"
|
||||
EX_00_WD=
|
||||
|
@ -50,18 +50,19 @@ context_action_cmd=
|
||||
# 0 is spaces, 1 is tabs, 2 is tab & spaces
|
||||
#type=1
|
||||
|
||||
[build_settings]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
compiler=g++ -Wall -c "%f"
|
||||
linker=g++ -Wall -o "%e" "%f"
|
||||
run_cmd="./%e"
|
||||
|
||||
[build-menu]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
FT_00_LB=_Compile
|
||||
FT_00_CM=g++ -Wall -c "%f"
|
||||
FT_00_WD=
|
||||
FT_01_LB=_Build
|
||||
FT_01_CM=g++ -Wall -o "%e" "%f"
|
||||
FT_01_WD=
|
||||
FT_02_LB=_Lint
|
||||
FT_02_CM=cppcheck --language=c++ --enable=warning,style --template=gcc "%f"
|
||||
FT_02_WD=
|
||||
EX_00_LB=_Execute
|
||||
EX_00_CM="./%e"
|
||||
EX_00_WD=
|
||||
|
@ -72,17 +72,16 @@ context_action_cmd=
|
||||
# 0 is spaces, 1 is tabs, 2 is tab & spaces
|
||||
#type=1
|
||||
|
||||
[build_settings]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
compiler=ghc --make "%f"
|
||||
run_cmd="./%e"
|
||||
|
||||
[build-menu]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
FT_00_LB=_Compile
|
||||
FT_00_CM=ghc --make "%f"
|
||||
FT_00_WD=
|
||||
FT_02_LB=_Lint
|
||||
FT_02_CM=hlint "%f"
|
||||
FT_02_WD=
|
||||
EX_00_LB=_Execute
|
||||
EX_00_CM="./%e"
|
||||
EX_00_WD=
|
||||
|
@ -61,18 +61,17 @@ context_action_cmd=
|
||||
# 0 is spaces, 1 is tabs, 2 is tab & spaces
|
||||
#type=0
|
||||
|
||||
[build_settings]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
compiler=python -m py_compile "%f"
|
||||
run_cmd=python "%f"
|
||||
|
||||
[build-menu]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
FT_00_LB=_Compile
|
||||
FT_00_CM=python -m py_compile "%f"
|
||||
FT_00_WD=
|
||||
FT_02_LB=_Lint
|
||||
FT_02_CM=pep8 --max-line-length=80 "%f"
|
||||
FT_02_WD=
|
||||
error_regex=(.+):([0-9]+):([0-9]+)
|
||||
EX_00_LB=_Execute
|
||||
EX_00_CM=python "%f"
|
||||
EX_00_WD=
|
||||
|
@ -73,9 +73,13 @@ context_action_cmd=
|
||||
# 0 is spaces, 1 is tabs, 2 is tab & spaces
|
||||
#type=1
|
||||
|
||||
[build_settings]
|
||||
[build-menu]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
compiler=ruby -c "%f"
|
||||
run_cmd=ruby "%f"
|
||||
FT_00_LB=_Compile
|
||||
FT_00_CM=ruby -wc "%f"
|
||||
FT_00_WD=
|
||||
EX_00_LB=_Execute
|
||||
EX_00_CM=ruby "%f"
|
||||
EX_00_WD=
|
||||
|
@ -52,12 +52,6 @@ context_action_cmd=
|
||||
# 0 is spaces, 1 is tabs, 2 is tab & spaces
|
||||
#type=1
|
||||
|
||||
[build_settings]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
# (use only one of it at one time)
|
||||
run_cmd="./%f"
|
||||
|
||||
[build-menu]
|
||||
# %f will be replaced by the complete filename
|
||||
# %e will be replaced by the filename without extension
|
||||
@ -65,3 +59,6 @@ run_cmd="./%f"
|
||||
FT_02_LB=_Lint
|
||||
FT_02_CM=shellcheck --format=gcc "%f"
|
||||
FT_02_WD=
|
||||
EX_00_LB=_Execute
|
||||
EX_00_CM="./%f"
|
||||
EX_00_WD=
|
||||
|
Loading…
x
Reference in New Issue
Block a user