Skip to content

Commit

Permalink
Support for 64bit windows
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzMeier committed Nov 8, 2010
1 parent 889a806 commit b6730e4
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions qgroundcontrol.pri
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ linux-g++-64 {
}


# Windows (32bit/64bit)
# Windows (32bit)
win32 {

message(Building for Windows Platform (32/64bit))
message(Building for Windows Platform (32bit))

# Special settings for debug
#CONFIG += CONSOLE
Expand All @@ -185,5 +185,31 @@ win32 {
RC_FILE = $$BASEDIR/qgroundcontrol.rc
}

# Windows (64bit)
win64 {

message(Building for Windows Platform (64bit))

# Special settings for debug
#CONFIG += CONSOLE

INCLUDEPATH += $$BASEDIR\lib\sdl\include \
$$BASEDIR\lib\opal\include #\ #\
#"C:\Program Files\Microsoft SDKs\Windows\v7.0\Include"

LIBS += -L$$BASEDIR\lib\sdl\win32 \
-lmingw32 -lSDLmain -lSDL -mwindows



debug {
DESTDIR = $$BASEDIR/bin
}

release {
DESTDIR = $$BASEDIR/bin
}

RC_FILE = $$BASEDIR/qgroundcontrol.rc
}

0 comments on commit b6730e4

Please sign in to comment.