Files
LXC/LXC/CMakeLists.txt
2025-07-19 20:48:54 +01:00

10 lines
349 B
CMake

# Creates the .exe from the single source file of the app #
add_executable(LXC LXC.cpp)
# Links the other binaries #
target_link_libraries(LXC PRIVATE Lexer)
# Creates the precompiled header for the binary #
target_include_directories(LXC PRIVATE ${CMAKE_SOURCE_DIR}/Common)
target_precompile_headers(LXC PRIVATE ${CMAKE_SOURCE_DIR}/Common/LXC.h)