Skip to content

Commit

Permalink
Fixed library issues during compilation on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanwise committed Jan 24, 2012
1 parent 61830bd commit c195e99
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
7 changes: 5 additions & 2 deletions app/app.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@
QT -= core \
gui

TARGET = ../bin/mbica
TARGET = mbica
DESTDIR = ../bin

TEMPLATE = app
CONFIG += console

SOURCES += \
main.cpp \

LIBS += -lmbica -larmadillo
LIBS += -lmbica
linux:LIBS += -larmadillo
win32:LIBS += ../lib/blas_win32_MT.lib ../lib/lapack_win32_MT.lib

INCLUDEPATH += ../include
QMAKE_LIBDIR += ../lib
Expand Down
Binary file added lib/blas_win32_MT.lib
Binary file not shown.
Binary file added lib/lapack_win32_MT.lib
Binary file not shown.
4 changes: 3 additions & 1 deletion tests/tests.pro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ SOURCES += \
HEADERS += \
whitening_test.h

LIBS += -lmbica -larmadillo -lboost_unit_test_framework
LIBS += -lmbica -lboost_unit_test_framework
linux:LIBS += -larmadillo
win32:LIBS += ../lib/blas_win32_MT.lib ../lib/lapack_win32_MT.lib

INCLUDEPATH += ../include
QMAKE_LIBDIR += ../lib
Expand Down

0 comments on commit c195e99

Please sign in to comment.