10 lines
349 B
CMake
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)
|