Done to make testing internal parts of the Parser easier as they can now be called via the .lib
10 lines
382 B
CMake
10 lines
382 B
CMake
# Creates the .exe from the single source file of the app #
|
|
add_executable(lxc LXC.cpp)
|
|
|
|
# Links to the all needed internal libraries #
|
|
target_link_libraries(lxc PUBLIC Parser)
|
|
|
|
# Creates the precompiled header for the binary #
|
|
target_include_directories(lxc PRIVATE ${CMAKE_SOURCE_DIR}/external/util)
|
|
target_precompile_headers(lxc PRIVATE ${CMAKE_SOURCE_DIR}/external/util/Util.h)
|