Renamed folders
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
@@ -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 #
|
||||||
|
|||||||
Reference in New Issue
Block a user