From 27408f6304a42902c0a6cc589f83ba46214a9d24 Mon Sep 17 00:00:00 2001 From: Viktor Kruug Date: Tue, 20 May 2014 12:33:53 -0500 Subject: [PATCH] Changed to be Linux friendly Running through the qmake/make process will now look for the Linux paths instead of Windows paths. Currently, this will build on Linux, but still references a lot of Windows paths. Doing more research, one should be able to replace all paths with Linux-based paths that should also work under CYGWIN on Windows. --- casinocoin-qt.pro | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/casinocoin-qt.pro b/casinocoin-qt.pro index bfc3233..f69cb36 100644 --- a/casinocoin-qt.pro +++ b/casinocoin-qt.pro @@ -19,9 +19,11 @@ CONFIG += thread # BOOST_INCLUDE_PATH, BOOST_LIB_PATH, BDB_INCLUDE_PATH, # BDB_LIB_PATH, OPENSSL_INCLUDE_PATH and OPENSSL_LIB_PATH respectively -BOOST_LIB_SUFFIX=-mgw48-mt-s-1_55 -BOOST_INCLUDE_PATH=C:/deps/boost_1_55_0 -BOOST_LIB_PATH=C:/deps/boost_1_55_0/stage/lib +#BOOST_LIB_SUFFIX=-mgw48-mt-s-1_55 +#BOOST_INCLUDE_PATH=C:/deps/boost_1_55_0 +BOOST_INCLUDE_PATH=/usr/include/boost +#BOOST_LIB_PATH=C:/deps/boost_1_55_0/stage/lib +BOOST_LIB_PATH=/usr/include/boost/stage/lib BDB_INCLUDE_PATH=C:/deps/db-4.8.30.NC/build_unix BDB_LIB_PATH=C:/deps/db-4.8.30.NC/build_unix OPENSSL_INCLUDE_PATH=C:/deps/openssl-1.0.1g/include