We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi all,
I'm trying to compile a little c++ program with the sfizz library but I have an error. Firstly, I cloned sfizz in my project and built it:
SFZPlayer/ ├── sfizz/ # Cloned sfizz repository ├── Makefile └── main.cpp
cd sfizz mkdir build cd build cmake .. make
then I tried to compile my program but I have this error:
sfizz/src/sfizz/Synth.h:13:10: fatal error: ghc/fs_std.hpp: No such file or directory 13 | #include <ghc/fs_std.hpp> | ^~~~~~~~~~~~~~~~
I create a new directory called ghc and put both the fs_std.hpp and filesystem.hpp files in it. But I'm still having the same error.
fs_std.hpp
filesystem.hpp
Here's my Makefile:
# Compiler CXX = g++ CXXFLAGS = -I sfizz/src -I sfizz/external -I ghc -std=c++14 # Paths SFIZZ_PATH = sfizz LIBS = -lsndfile -lpthread -labsl_strings -labsl_base # Targets TARGET = SFZPlayer SOURCES = main.cpp OBJECTS = $(SOURCES:.cpp=.o) # Rules all: $(TARGET) $(TARGET): $(OBJECTS) $(CXX) -o $@ $^ -L $(SFIZZ_PATH)/build/src -lsfizz $(LIBS) %.o: %.cpp $(CXX) $(CXXFLAGS) -c $< -o $@ clean: rm -f $(TARGET) $(OBJECTS) # Phony targets .PHONY: all clean
Can someone help me ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi all,
I'm trying to compile a little c++ program with the sfizz library but I have an error.
Firstly, I cloned sfizz in my project and built it:
then I tried to compile my program but I have this error:
I create a new directory called ghc and put both the
fs_std.hpp
andfilesystem.hpp
files in it. But I'm still having the same error.Here's my Makefile:
Can someone help me ?
The text was updated successfully, but these errors were encountered: