From 41b5ba0632b54928904308eeb6e27d4d372a4649 Mon Sep 17 00:00:00 2001 From: Pasha Bibko <156938226+PashaBibko@users.noreply.github.com> Date: Mon, 21 Jul 2025 20:30:30 +0100 Subject: [PATCH] Reverted a couple of changes for UNIX systems Everything still works as it did before --- Common/OS.h | 1 - LXC/CMakeLists.txt | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) 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)