Reverted a couple of changes for UNIX systems
Everything still works as it did before
This commit is contained in:
@@ -10,4 +10,3 @@
|
|||||||
#else
|
#else
|
||||||
#error "OS is not supported"
|
#error "OS is not supported"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user