mirror of
https://github.com/miek/inspectrum.git
synced 2026-02-20 01:31:35 +01:00
Switch to cmake
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,6 +1,2 @@
|
||||
# Build outputs
|
||||
build/
|
||||
inspectrum
|
||||
Makefile
|
||||
moc_*
|
||||
*.o
|
||||
|
||||
14
README.md
14
README.md
@@ -7,12 +7,18 @@ inspectrum is a tool for analysing captured signals, primarily from software-def
|
||||
Currently very early and rough, but usable.
|
||||
|
||||
## Try it
|
||||
### Prerequisites
|
||||
|
||||
* qt5
|
||||
* cmake
|
||||
* fftw
|
||||
|
||||
### Building on Debian-based distros
|
||||
|
||||
sudo apt-get install qt5-default
|
||||
git clone https://github.com/miek/inspectrum.git
|
||||
cd inspectrum
|
||||
qmake
|
||||
sudo apt-get install qt5-default cmake libfftw3-dev
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make
|
||||
|
||||
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
CONFIG += c++11
|
||||
QT += widgets
|
||||
TARGET = inspectrum
|
||||
TEMPLATE = app
|
||||
|
||||
LIBS += -lfftw3f
|
||||
HEADERS += mainwindow.h fft.h inputsource.h spectrogram.h spectrogramcontrols.h
|
||||
SOURCES += main.cpp fft.cpp mainwindow.cpp inputsource.cpp spectrogram.cpp spectrogramcontrols.cpp
|
||||
Reference in New Issue
Block a user