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

@@ -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 #