Fix the preprocessor, cxxopts missing

This commit is contained in:
Jean Pierre Cimalando 2020-12-14 07:53:34 +01:00
parent 8b56f89688
commit 96dc4791e4
2 changed files with 3 additions and 3 deletions

View file

@ -15,4 +15,4 @@ if(JACK_FOUND AND TARGET Qt5::Widgets)
endif() endif()
add_executable(sfizz_preprocessor Preprocessor.cpp) add_executable(sfizz_preprocessor Preprocessor.cpp)
target_link_libraries(sfizz_preprocessor sfizz_parser) target_link_libraries(sfizz_preprocessor PRIVATE sfizz_parser sfizz-cxxopts)

View file

@ -13,8 +13,8 @@
*/ */
#include "parser/Parser.h" #include "parser/Parser.h"
#include "../tests/cxxopts.hpp" #include <cxxopts.hpp>
#include "absl/strings/string_view.h" #include <absl/strings/string_view.h>
#include <iostream> #include <iostream>
class MyParserListener : public sfz::Parser::Listener { class MyParserListener : public sfz::Parser::Listener {