From 1aa4de222faf3e7e214256cad36489006ffeea8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 29 Feb 2012 20:48:43 +0100 Subject: [PATCH] Work on Makefile for Win32 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 69f03fa..9fc0e7f 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,11 @@ CXXFLAGS+=-DRESSOURCES_ROOT="\"$(SHARE_DIR)\"" #CXXFLAGS+=-DRESSOURCES_ROOT="\"./ressources/\"" LDFLAGS+=`pkg-config --libs $(QT_PACKAGES)` +ifdef WIN32 +LDFLAGS+=lib/libofx.a +else LDFLAGS+=-lofx +endif CXX=$(HOST)g++