From 53e07a25a7e0feacdf16c77b98586bd218eaa240 Mon Sep 17 00:00:00 2001 From: Pasha Bibko <156938226+PashaBibko@users.noreply.github.com> Date: Tue, 22 Jul 2025 21:27:58 +0100 Subject: [PATCH] Renamed folders --- CMakeLists.txt | 2 +- LXC/CMakeLists.txt | 4 ++-- Lexer/CMakeLists.txt | 4 ++-- tests/CMakeLists.txt | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e58ec2c..5dbc97e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ enable_testing() add_subdirectory(external/googletest) # Adds the sub-directories of all of the binaries # -add_subdirectory(Lexer) +add_subdirectory(lexer) # The app subdirectory # add_subdirectory(LXC) diff --git a/LXC/CMakeLists.txt b/LXC/CMakeLists.txt index 1ae5a82..342b4f1 100644 --- a/LXC/CMakeLists.txt +++ b/LXC/CMakeLists.txt @@ -5,5 +5,5 @@ add_executable(LXC LXC.cpp) target_link_libraries(LXC PRIVATE Lexer) # Creates the precompiled header for the binary # -target_include_directories(LXC PRIVATE ${CMAKE_SOURCE_DIR}/Common) -target_precompile_headers(LXC PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h) +target_include_directories(LXC PRIVATE ${CMAKE_SOURCE_DIR}/common) +target_precompile_headers(LXC PRIVATE ${CMAKE_SOURCE_DIR}/common/LXC.h) diff --git a/Lexer/CMakeLists.txt b/Lexer/CMakeLists.txt index 5c7fdf0..6086259 100644 --- a/Lexer/CMakeLists.txt +++ b/Lexer/CMakeLists.txt @@ -9,5 +9,5 @@ target_include_directories ( ) # Creates the precompiled header for the binary # -target_include_directories(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/Common) -target_precompile_headers(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h) +target_include_directories(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/common) +target_precompile_headers(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/common/LXC.h) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 3a3b985..2483ee2 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -3,12 +3,12 @@ file (GLOB TestSources src/*.cpp inc/*.h) add_executable(LXC_Tests ${TestSources}) # Creates the shared precompiled header # -target_include_directories(LXC_Tests PRIVATE ${CMAKE_SOURCE_DIR}/Common) -target_precompile_headers(LXC_Tests PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h) +target_include_directories(LXC_Tests PRIVATE ${CMAKE_SOURCE_DIR}/common) +target_precompile_headers(LXC_Tests PRIVATE ${CMAKE_SOURCE_DIR}/common/LXC.h) # Includes headers for modules to test # target_include_directories(LXC_Tests PRIVATE - ${CMAKE_SOURCE_DIR}/Lexer/inc + ${CMAKE_SOURCE_DIR}/lexer/inc ) # Links with GoogleTest #