diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-06-30 16:35:34 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-06-30 16:35:34 -0400 |
commit | ebce49925cfb0c93a0a4fc3c302f0efbf24e1409 (patch) | |
tree | 4fdbf42b931d8751c636d906e559862147912ff3 /.lapce/run.toml | |
parent | de7edc4658db4936afd37ed49df82d1746521b0f (diff) | |
parent | 766be2624ca345ff91f8a01c6af9ed62b19d6044 (diff) | |
download | abaddon-portaudio-ebce49925cfb0c93a0a4fc3c302f0efbf24e1409.tar.gz abaddon-portaudio-ebce49925cfb0c93a0a4fc3c302f0efbf24e1409.zip |
Merge branch 'master' of https://github.com/uowuo/abaddon
Diffstat (limited to '.lapce/run.toml')
-rw-r--r-- | .lapce/run.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.lapce/run.toml b/.lapce/run.toml new file mode 100644 index 0000000..a309b78 --- /dev/null +++ b/.lapce/run.toml @@ -0,0 +1,24 @@ +# The run config is used for both run mode and debug mode + +[[configs]] +name = "cmake-debug" +program = "sh" +args = [".lapce/gen_compile_commands.sh"] + +[configs.env] +CC = "/usr/bin/clang" +CXX = "/usr/bin/clang++" + +[[configs]] +name = "cmake" +program = "cmake" +args = ["--build", "build"] + +[configs.env] +CC = "/usr/bin/clang" +CXX = "/usr/bin/clang++" + +[[configs]] +name = "run" +type = "lldb" +program = "build/abaddon" |