From 41ce54377a278d5535d10e55e8c0d333f0c384fd Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Thu, 19 Jun 2014 18:37:42 +0100 Subject: [PATCH] link with the correct 32bit or 64bit X-Plane SDK library --- src/xbus/xbus.pro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xbus/xbus.pro b/src/xbus/xbus.pro index 2d231b97e..013ac7d00 100644 --- a/src/xbus/xbus.pro +++ b/src/xbus/xbus.pro @@ -8,7 +8,8 @@ TEMPLATE = lib CONFIG += shared CONFIG += blackmisc blackcore -LIBS += -lXPLM +equals(WORD_SIZE,64): LIBS += -lXPLM_64 +equals(WORD_SIZE,32): LIBS += -lXPLM DEPENDPATH += . ../../src INCLUDEPATH += . ../../src