Skip to content

Commit

Permalink
Add SQLite source & library paths for Qt Creator 3.6.1 on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed May 1, 2016
1 parent 11963f4 commit 5d98a19
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ endif()

if(WIN32 AND MSVC)
if(CMAKE_CL_64)
set(QT5_PATH "E:/Qt64/Qt5.5.1/5.5/msvc2013_64")
set(SQLITE3_PATH "E:/libs/sqlite3_x64")
set(OPENSSL_PATH "E:/libs/openssl-1.0.2a-x64_86-win64")
set(SQLITE3_PATH "C:/dev/SQLite")
set(QT5_PATH "C:/dev/Qt/5.6/msvc2013_64")
set(OPENSSL_PATH "C:/dev/OpenSSL-Win64")
set(VSREDIST "vcredist_x64.exe")
else()
set(QT5_PATH "E:/Qt/Qt5.5.1/5.5/msvc2013")
Expand Down
5 changes: 5 additions & 0 deletions src/src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,8 @@ DEPENDPATH += $$PWD/../libs/antlr-2.7.7 $$PWD/../libs/qhexedit $$PWD/../libs/qcu

# Rules for creating/updating {ts|qm}-files
include(i18n.pri)

win32: LIBS += -L$$PWD/../../../dev/SQLite/ -lsqlite3

INCLUDEPATH += $$PWD/../../../dev/SQLite
DEPENDPATH += $$PWD/../../../dev/SQLite

0 comments on commit 5d98a19

Please sign in to comment.