Reverted a couple of changes for UNIX systems

Everything still works as it did before
This commit is contained in:
Pasha Bibko
2025-07-21 20:30:30 +01:00
parent 759a9e3a88
commit 41b5ba0632
2 changed files with 4 additions and 5 deletions

View File

@@ -10,4 +10,3 @@
#else #else
#error "OS is not supported" #error "OS is not supported"
#endif #endif

View File

@@ -1,9 +1,9 @@
# Creates the .exe from the single source file of the app # # 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 # # Links the other binaries #
target_link_libraries(LXCR 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(LXCR PRIVATE ${CMAKE_SOURCE_DIR}/Common) target_include_directories(LXC PRIVATE ${CMAKE_SOURCE_DIR}/Common)
target_precompile_headers(LXCR PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h) target_precompile_headers(LXC PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h)