diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-29 15:22:59 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-29 15:22:59 +0100 |
commit | 7285f9f2c2622acff734e31314f92df9b25cae16 (patch) | |
tree | 36500df9ba5cf45b20f705d4c478afd2b7903a6f /frontend/cmd/CMakeLists.txt | |
parent | 953f18fe681a2f120dab5be9e9884bf35765e21e (diff) |
split commands into separate files
Diffstat (limited to 'frontend/cmd/CMakeLists.txt')
-rw-r--r-- | frontend/cmd/CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/frontend/cmd/CMakeLists.txt b/frontend/cmd/CMakeLists.txt new file mode 100644 index 0000000..61feb84 --- /dev/null +++ b/frontend/cmd/CMakeLists.txt @@ -0,0 +1,17 @@ +target_sources(main PUBLIC + cheat.cpp + equip.cpp + get.cpp + go.cpp + help.cpp + hit.cpp + put.cpp + query.cpp + quit.cpp + restart.cpp + search.cpp + use.cpp + view.cpp + wait.cpp +) + |