mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-07-31 21:22:27 -04:00
Change Makefile.MinGW to use my qt5.0.2 paths. Yours may be different!
The old Makefile.MinGW has been renamed Makefile.MinGW.qt4. Be sure to check settings in lines 13-19 of wsjtx.pro. Soon to come: Permanent changeover from PortAudio to QAudio ? git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3521 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
27b3a76f21
commit
5af0f6880f
@ -4,10 +4,13 @@
|
|||||||
|
|
||||||
# Set paths
|
# Set paths
|
||||||
EXE_DIR = ../../wsjtx_install
|
EXE_DIR = ../../wsjtx_install
|
||||||
INCPATH = -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include/QtCore' \
|
#INCPATH = -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include/QtCore' \
|
||||||
-I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include' \
|
# -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include' \
|
||||||
-I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include/ActiveQt' \
|
# -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include/ActiveQt' \
|
||||||
-I'release' -I'.' -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/mkspecs/win32-g++'
|
# -I'release' -I'.' -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/mkspecs/win32-g++'
|
||||||
|
|
||||||
|
INCPATH = -I'C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/QtCore' \
|
||||||
|
-I'C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include' \
|
||||||
|
|
||||||
# Compilers
|
# Compilers
|
||||||
CC = gcc
|
CC = gcc
|
||||||
@ -53,8 +56,9 @@ libjt9.a: $(OBJS1)
|
|||||||
ar cr libjt9.a $(OBJS1)
|
ar cr libjt9.a $(OBJS1)
|
||||||
ranlib libjt9.a
|
ranlib libjt9.a
|
||||||
|
|
||||||
OBJS2 = jt9.o jt9a.o jt9b.o jt9c.o ipcomm.o sec_midn.o cutil.o
|
OBJS2 = jt9.o jt9a.o jt9b.o jt9c.o ipcomm.o sec_midn.o usleep.o
|
||||||
LIBS2 = -L'c:/QtSDK/Desktop/Qt/4.7.4/mingw/lib' -lQtCore4
|
#LIBS2 = -L'c:/QtSDK/Desktop/Qt/4.7.4/mingw/lib' -lQtCore4
|
||||||
|
LIBS2 = -L'C:/Qt/Qt5.0.2/5.0.2/mingw47_32/lib' -lQt5Core
|
||||||
jt9.exe: $(OBJS2) libjt9.a
|
jt9.exe: $(OBJS2) libjt9.a
|
||||||
$(CXX) -o jt9.exe $(OBJS2) $(LIBS2) libjt9.a ../libfftw3f_win.a \
|
$(CXX) -o jt9.exe $(OBJS2) $(LIBS2) libjt9.a ../libfftw3f_win.a \
|
||||||
c:/MinGW/lib/libf95.a
|
c:/MinGW/lib/libf95.a
|
||||||
|
122
lib/Makefile.MinGW.qt4
Normal file
122
lib/Makefile.MinGW.qt4
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
# Makefile for MinGW on Windows
|
||||||
|
# Windows re-direct:
|
||||||
|
# C> make > junk1 2>&1
|
||||||
|
|
||||||
|
# Set paths
|
||||||
|
EXE_DIR = ../../wsjtx_install
|
||||||
|
INCPATH = -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include/QtCore' \
|
||||||
|
-I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include' \
|
||||||
|
-I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/include/ActiveQt' \
|
||||||
|
-I'release' -I'.' -I'c:/QtSDK/Desktop/Qt/4.7.4/mingw/mkspecs/win32-g++'
|
||||||
|
|
||||||
|
# Compilers
|
||||||
|
CC = gcc
|
||||||
|
CXX = g++
|
||||||
|
FC = g95
|
||||||
|
|
||||||
|
FFLAGS = -O2 -fbounds-check -Wall -Wno-precision-loss -fno-second-underscore
|
||||||
|
CFLAGS = -I. -fbounds-check -mno-stack-arg-probe
|
||||||
|
|
||||||
|
# Default rules
|
||||||
|
%.o: %.c
|
||||||
|
${CC} ${CFLAGS} -c $<
|
||||||
|
%.o: %.f
|
||||||
|
${FC} ${FFLAGS} -c $<
|
||||||
|
%.o: %.F
|
||||||
|
${FC} ${FFLAGS} -c $<
|
||||||
|
%.o: %.f90
|
||||||
|
${FC} ${FFLAGS} -c $<
|
||||||
|
%.o: %.F90
|
||||||
|
${FC} ${FFLAGS} -c $<
|
||||||
|
|
||||||
|
all: libjt9.a jt9sim.exe jt9.exe jt9code.exe jt65.exe
|
||||||
|
|
||||||
|
OBJS1 = pctile.o graycode.o sort.o ssort.o \
|
||||||
|
unpackmsg.o igray.o unpackcall.o unpackgrid.o \
|
||||||
|
grid2k.o unpacktext.o getpfx2.o packmsg.o deg2grid.o \
|
||||||
|
packtext.o getpfx1.o packcall.o k2grid.o packgrid.o \
|
||||||
|
nchar.o four2a.o grid2deg.o pfxdump.o f77_wisdom.o \
|
||||||
|
symspec.o analytic.o db.o genjt9.o \
|
||||||
|
packbits.o unpackbits.o encode232.o interleave9.o \
|
||||||
|
entail.o fano232.o gran.o sync9.o decode9.o \
|
||||||
|
fil3.o decoder.o grid2n.o n2grid.o timer.o \
|
||||||
|
softsym.o getlags.o afc9.o fchisq.o twkfreq.o downsam9.o \
|
||||||
|
peakdt9.o symspec2.o stdmsg.o morse.o azdist.o geodist.o \
|
||||||
|
fillcom.o chkss2.o zplot9.o flat2.o \
|
||||||
|
jt65a.o symspec65.o flat65.o ccf65.o decode65a.o \
|
||||||
|
filbig.o fil6521.o afc65b.o decode65b.o setup65.o \
|
||||||
|
extract.o fchisq65.o demod64a.o chkhist.o interleave63.o ccf2.o \
|
||||||
|
move.o indexx.o graycode65.o twkfreq65.o smo121.o \
|
||||||
|
wrapkarn.o init_rs.o encode_rs.o decode_rs.o gen65.o
|
||||||
|
|
||||||
|
libjt9.a: $(OBJS1)
|
||||||
|
ar cr libjt9.a $(OBJS1)
|
||||||
|
ranlib libjt9.a
|
||||||
|
|
||||||
|
OBJS2 = jt9.o jt9a.o jt9b.o jt9c.o ipcomm.o sec_midn.o usleep.o
|
||||||
|
LIBS2 = -L'c:/QtSDK/Desktop/Qt/4.7.4/mingw/lib' -lQtCore4
|
||||||
|
jt9.exe: $(OBJS2) libjt9.a
|
||||||
|
$(CXX) -o jt9.exe $(OBJS2) $(LIBS2) libjt9.a ../libfftw3f_win.a \
|
||||||
|
c:/MinGW/lib/libf95.a
|
||||||
|
mkdir -p $(EXE_DIR)
|
||||||
|
cp jt9.exe $(EXE_DIR)
|
||||||
|
|
||||||
|
OBJS3 = jt9sim.o
|
||||||
|
jt9sim.exe: $(OBJS3) libjt9.a
|
||||||
|
$(FC) -o jt9sim.exe $(OBJS3) libjt9.a
|
||||||
|
|
||||||
|
OBJS4 = jt9code.o
|
||||||
|
jt9code.exe: $(OBJS4) libjt9.a
|
||||||
|
$(FC) -o jt9code.exe $(OBJS4) libjt9.a
|
||||||
|
|
||||||
|
OBJS5 = jt65.o
|
||||||
|
jt65.exe: $(OBJS5) libjt9.a
|
||||||
|
$(FC) -o jt65.exe $(OBJS5) libjt9.a ../libfftw3f_win.a
|
||||||
|
|
||||||
|
sync9.o: sync9.f90 jt9sync.f90
|
||||||
|
$(FC) $(FFLAGS) -c sync9.f90
|
||||||
|
|
||||||
|
spec9.o: spec9.f90 jt9sync.f90
|
||||||
|
$(FC) $(FFLAGS) -c spec9.f90
|
||||||
|
|
||||||
|
peakdt9.o: peakdt9.f90 jt9sync.f90
|
||||||
|
$(FC) $(FFLAGS) -c peakdt9.f90
|
||||||
|
|
||||||
|
jt9sim.o: jt9sim.f90 jt9sync.f90
|
||||||
|
$(FC) $(FFLAGS) -c jt9sim.f90
|
||||||
|
|
||||||
|
genjt9.o: genjt9.f90 jt9sync.f90
|
||||||
|
$(FC) $(FFLAGS) -c genjt9.f90
|
||||||
|
|
||||||
|
redsync.o: redsync.f90 jt9sync.f90
|
||||||
|
$(FC) $(FFLAGS) -c redsync.f90
|
||||||
|
|
||||||
|
unpackmsg.o: unpackmsg.f90
|
||||||
|
$(FC) -c -O0 -fbounds-check -Wall -Wno-precision-loss unpackmsg.f90
|
||||||
|
|
||||||
|
ipcomm.o: ipcomm.cpp
|
||||||
|
$(CXX) -c $(INCPATH) ipcomm.cpp
|
||||||
|
|
||||||
|
sec_midn.o: sec_midn.f90
|
||||||
|
$(FC) -c -fno-second-underscore sec_midn.f90
|
||||||
|
|
||||||
|
#rig_control.o: rig_control.c
|
||||||
|
# $(CC) -c -Wall -I..\..\..\hamlib-1.2.15.3\include rig_control.c
|
||||||
|
|
||||||
|
tstrig.o: tstrig.c
|
||||||
|
$(CC) -c -Wall -I..\..\..\hamlib-1.2.15.3\include tstrig.c
|
||||||
|
|
||||||
|
init_rs.o: init_rs.c
|
||||||
|
$(CC) -c -DBIGSYM=1 -o init_rs.o init_rs.c
|
||||||
|
|
||||||
|
encode_rs.o: encode_rs.c
|
||||||
|
$(CC) -c -DBIGSYM=1 -o encode_rs.o encode_rs.c
|
||||||
|
|
||||||
|
decode_rs.o: decode_rs.c
|
||||||
|
$(CC) -c -DBIGSYM=1 -o decode_rs.o decode_rs.c
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o libjt9.a wsjtx.exe jt9sim.exe jt9.exe jt65.exe
|
@ -1,4 +1,4 @@
|
|||||||
//--------------------------------------------------------------- MainWindow
|
//-------------------------------------------------------------- MainWindow
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "ui_mainwindow.h"
|
#include "ui_mainwindow.h"
|
||||||
#include "devsetup.h"
|
#include "devsetup.h"
|
||||||
|
@ -10,12 +10,14 @@ Source: "c:\Users\joe\wsjt\wsjtx_install\*.exe"; DestDir
|
|||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\*.dll"; DestDir: "{app}";
|
Source: "c:\Users\joe\wsjt\wsjtx_install\*.dll"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\*.dat"; DestDir: "{app}";
|
Source: "c:\Users\joe\wsjt\wsjtx_install\*.dat"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\wsjt.ico"; DestDir: "{app}";
|
Source: "c:\Users\joe\wsjt\wsjtx_install\wsjt.ico"; DestDir: "{app}";
|
||||||
|
Source: "c:\Users\joe\wsjt\wsjtx_install\qt.conf"; DestDir: "{app}";
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\CALL3.TXT"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
Source: "c:\Users\joe\wsjt\wsjtx_install\CALL3.TXT"; DestDir: "{app}"; Flags: onlyifdoesntexist
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx\shortcuts.txt"; DestDir: "{app}"
|
Source: "c:\Users\joe\wsjt\wsjtx\shortcuts.txt"; DestDir: "{app}"
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx\mouse_commands.txt"; DestDir: "{app}"
|
Source: "c:\Users\joe\wsjt\wsjtx\mouse_commands.txt"; DestDir: "{app}"
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx\WSJT-X_Users_Guide_v1.1.1.pdf"; DestDir: "{app}"
|
Source: "c:\Users\joe\wsjt\wsjtx\WSJT-X_Users_Guide_v1.1.1.pdf"; DestDir: "{app}"
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\save\Samples\130418_1742.wav"; DestDir: "{app}\save\Samples";
|
Source: "c:\Users\joe\wsjt\wsjtx_install\save\Samples\130418_1742.wav"; DestDir: "{app}\save\Samples";
|
||||||
Source: "c:\Users\joe\wsjt\wsjtx_install\save\Samples\130610_2343.wav"; DestDir: "{app}\save\Samples";
|
Source: "c:\Users\joe\wsjt\wsjtx_install\save\Samples\130610_2343.wav"; DestDir: "{app}\save\Samples";
|
||||||
|
Source: "c:\Users\joe\wsjt\wsjtx_install\platforms\qwindows.dll"; DestDir: "{app}\platforms";
|
||||||
|
|
||||||
[Icons]
|
[Icons]
|
||||||
Name: "{group}\wsjtx2"; Filename: "{app}\wsjtx.exe"; WorkingDir: {app}; IconFilename: {app}\wsjt.ico
|
Name: "{group}\wsjtx2"; Filename: "{app}\wsjtx.exe"; WorkingDir: {app}; IconFilename: {app}\wsjt.ico
|
||||||
|
@ -10,12 +10,12 @@ CONFIG += thread
|
|||||||
#CONFIG += console
|
#CONFIG += console
|
||||||
|
|
||||||
TARGET = wsjtx
|
TARGET = wsjtx
|
||||||
DESTDIR = ../qt4_install
|
#DESTDIR = ../qt4_install
|
||||||
#DESTDIR = ../wsjtx_install
|
DESTDIR = ../wsjtx_install
|
||||||
VERSION = 1.1
|
VERSION = 1.1
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
DEFINES = QT4
|
#DEFINES = QT4
|
||||||
#DEFINES = QT5
|
DEFINES = QT5
|
||||||
#DEFINES += QAUDIO_INPUT
|
#DEFINES += QAUDIO_INPUT
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user