1 diff --git a/CMakeLists.txt b/CMakeLists.txt
2 index 4a21b94..0ac7911 100644
5 @@ -67,10 +67,10 @@ endif()
8 ${PROJECT_SOURCE_DIR}/generated/
9 - ${PROJECT_SOURCE_DIR}/third_party/
10 - ${PROJECT_SOURCE_DIR}/third_party/Catch2/single_include
11 - ${PROJECT_SOURCE_DIR}/third_party/yaml-cpp/include
12 - ${PROJECT_SOURCE_DIR}/third_party/antlr4/runtime/Cpp/runtime/src
16 + @antlr4RuntimeCpp@/include/antlr4-runtime
17 ${PROJECT_SOURCE_DIR}/src/
20 @@ -92,9 +92,6 @@ file(GLOB_RECURSE yaml-cpp-src
21 ${PROJECT_SOURCE_DIR}/third_party/yaml-cpp/src/*.cpp
24 -add_library (antlr4-cpp-runtime ${antlr4-cpp-src})
25 -add_library (yaml-cpp ${yaml-cpp-src})
27 add_executable(lua-format ${src_dir} src/main.cpp)
30 @@ -104,7 +101,7 @@ endif()
32 set_target_properties(lua-format PROPERTIES LINKER_LANGUAGE CXX)
34 -target_link_libraries(lua-format yaml-cpp antlr4-cpp-runtime ${extra-libs})
35 +target_link_libraries(lua-format yaml-cpp antlr4-runtime ${extra-libs})
37 install(TARGETS lua-format
38 RUNTIME DESTINATION bin
39 @@ -135,7 +132,7 @@ if(BUILD_TESTS)
42 target_compile_definitions(lua-format-test PUBLIC PROJECT_PATH="${PROJECT_SOURCE_DIR}")
43 - target_link_libraries(lua-format-test yaml-cpp antlr4-cpp-runtime ${extra-libs})
44 + target_link_libraries(lua-format-test yaml-cpp antlr4-runtime ${extra-libs})
46 add_test(NAME args COMMAND lua-format-test [args])
47 add_test(NAME config COMMAND lua-format-test [config])
48 diff --git a/src/main.cpp b/src/main.cpp
49 index 38962a2..332aad6 100644
53 -#include <args/args.hxx>
58 diff --git a/test/test_args.cpp b/test/test_args.cpp
59 index 69a5746..b988d00 100644
60 --- a/test/test_args.cpp
61 +++ b/test/test_args.cpp
63 -#include <args/args.hxx>
65 #include <catch2/catch.hpp>