Fix the preprocessor, cxxopts missing
This commit is contained in:
parent
8b56f89688
commit
96dc4791e4
2 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue