From 6179ab13be5386c7f6fdfb01311e9fc6f1abbf54 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Mon, 20 Mar 2023 20:08:13 +0100 Subject: [PATCH] CMake: Rename executable to "lasm" --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 79fcea2..321eff2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,9 +5,9 @@ set(CMAKE_CXX_STANDARD 20) find_package(Boost 1.81 COMPONENTS program_options REQUIRED) -add_executable(LogisimAssembler +add_executable(lasm src/main.cpp src/lexer/Token.cpp src/lexer/Lexer.cpp) -target_link_libraries(LogisimAssembler Boost::program_options) \ No newline at end of file +target_link_libraries(lasm Boost::program_options) \ No newline at end of file