Renamed folders

This commit is contained in:
Pasha Bibko
2025-07-22 21:27:58 +01:00
parent a6f25bf18e
commit 53e07a25a7
4 changed files with 8 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ enable_testing()
add_subdirectory(external/googletest) add_subdirectory(external/googletest)
# Adds the sub-directories of all of the binaries # # Adds the sub-directories of all of the binaries #
add_subdirectory(Lexer) add_subdirectory(lexer)
# The app subdirectory # # The app subdirectory #
add_subdirectory(LXC) add_subdirectory(LXC)

View File

@@ -5,5 +5,5 @@ add_executable(LXC LXC.cpp)
target_link_libraries(LXC PRIVATE Lexer) target_link_libraries(LXC PRIVATE Lexer)
# Creates the precompiled header for the binary # # Creates the precompiled header for the binary #
target_include_directories(LXC PRIVATE ${CMAKE_SOURCE_DIR}/Common) target_include_directories(LXC PRIVATE ${CMAKE_SOURCE_DIR}/common)
target_precompile_headers(LXC PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h) target_precompile_headers(LXC PRIVATE ${CMAKE_SOURCE_DIR}/common/LXC.h)

View File

@@ -9,5 +9,5 @@ target_include_directories (
) )
# Creates the precompiled header for the binary # # Creates the precompiled header for the binary #
target_include_directories(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/Common) target_include_directories(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/common)
target_precompile_headers(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h) target_precompile_headers(Lexer PRIVATE ${CMAKE_SOURCE_DIR}/common/LXC.h)

View File

@@ -3,12 +3,12 @@ file (GLOB TestSources src/*.cpp inc/*.h)
add_executable(LXC_Tests ${TestSources}) add_executable(LXC_Tests ${TestSources})
# Creates the shared precompiled header # # Creates the shared precompiled header #
target_include_directories(LXC_Tests PRIVATE ${CMAKE_SOURCE_DIR}/Common) target_include_directories(LXC_Tests PRIVATE ${CMAKE_SOURCE_DIR}/common)
target_precompile_headers(LXC_Tests PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h) target_precompile_headers(LXC_Tests PRIVATE ${CMAKE_SOURCE_DIR}/common/LXC.h)
# Includes headers for modules to test # # Includes headers for modules to test #
target_include_directories(LXC_Tests PRIVATE target_include_directories(LXC_Tests PRIVATE
${CMAKE_SOURCE_DIR}/Lexer/inc ${CMAKE_SOURCE_DIR}/lexer/inc
) )
# Links with GoogleTest # # Links with GoogleTest #