1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-12 11:28:26 -06:00

Allow cross compilation. (#1182)

This commit is contained in:
Unit 193
2023-08-21 05:24:25 -04:00
committed by GitHub
parent fd0d2e3353
commit d49c75370a
3 changed files with 6 additions and 5 deletions

View File

@@ -102,7 +102,7 @@ endif
#------ FUSE configuration ------
FUSE_LIBS = $(shell pkg-config fuse --libs)
FUSE_LIBS = $(shell $(PKG_CONFIG) fuse --libs)
#------ Executable ------
@@ -159,7 +159,7 @@ endif
$(APPNAME): $(LIBS) $(OBJS)
@echo Linking $@
$(CXX) -o $(APPNAME) $(OBJS) $(LIBS) $(FUSE_LIBS) $(WX_LIBS) $(LFLAGS)
$(CXX) -o $(APPNAME) $(OBJS) $(LIBS) $(AYATANA_LIBS) $(FUSE_LIBS) $(WX_LIBS) $(LFLAGS)
ifeq "$(TC_BUILD_CONFIG)" "Release"
ifndef NOSTRIP