diff --git a/Common/OS.h b/Common/OS.h index 1bced1a..4e1a65d 100644 --- a/Common/OS.h +++ b/Common/OS.h @@ -10,4 +10,3 @@ #else #error "OS is not supported" #endif - diff --git a/LXC/CMakeLists.txt b/LXC/CMakeLists.txt index bcd02dc..1ae5a82 100644 --- a/LXC/CMakeLists.txt +++ b/LXC/CMakeLists.txt @@ -1,9 +1,9 @@ # Creates the .exe from the single source file of the app # -add_executable(LXCR LXC.cpp) +add_executable(LXC LXC.cpp) # Links the other binaries # -target_link_libraries(LXCR PRIVATE Lexer) +target_link_libraries(LXC PRIVATE Lexer) # Creates the precompiled header for the binary # -target_include_directories(LXCR PRIVATE ${CMAKE_SOURCE_DIR}/Common) -target_precompile_headers(LXCR 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)