Skip to content

Commit

Permalink
Move CommandParser & Color to exec
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisHsu committed Apr 12, 2024
1 parent f346573 commit 372be00
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ add_library(cc

add_executable(wasmvm-cc
exec/wasmvm-cc.cpp
lib/CommandParser.cpp
exec/CommandParser.cpp
lib/Linker.cpp
lib/Archive.cpp
)
Expand Down
4 changes: 2 additions & 2 deletions src/lib/CommandParser.cpp → src/exec/CommandParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#include <CommandParser.hpp>
#include "CommandParser.hpp"

#include <queue>
#include <iostream>
#include <cstdlib>

#include <Util.hpp>
#include <color.hpp>
#include "color.hpp"

static void help(std::filesystem::path program, std::string desc,
std::vector<CommandParser::Opt> options
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/exec/wasmvm-cc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#include <Error.hpp>
#include <WasmVM.hpp>
#include <structures/WasmModule.hpp>
#include <color.hpp>
#include <CommandParser.hpp>
#include "color.hpp"
#include "CommandParser.hpp"
#include <Archive.hpp>
#include <Linker.hpp>
#include <PreProcessor.hpp>
Expand Down

0 comments on commit 372be00

Please sign in to comment.