mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
-Updated to use the Tup buildsystem
This commit is contained in:
parent
f3596341ee
commit
e3fe30085f
5 changed files with 14 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -3,3 +3,6 @@
|
|||
.build*
|
||||
|
||||
planning/*
|
||||
|
||||
*.o
|
||||
.tup/*
|
||||
|
|
9
Tupfile
Normal file
9
Tupfile
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
# Tup build file for Luppp
|
||||
|
||||
#INCLUDES +=
|
||||
#LDFLAGS += `pkg-config --libs jack sndfile cairomm-1.0 ntk ntk_images`
|
||||
|
||||
: foreach src/*.cxx src/observer/*.cxx src/dsp/*.cxx src/controller/*.cxx |> g++ -Wall -c %f -pthread -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -pthread -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/cairomm-1.0 -I/usr/lib/cairomm-1.0/include -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/ntk -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng15 -o %o |> %B.o
|
||||
|
||||
: *.o |> g++ %f -ljack -lpthread -lrt -lsndfile -lcairomm-1.0 -lsigc-2.0 -lntk -lntk_images -lntk -lcairo -o %o |> lup
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
#include "gui.hxx"
|
||||
#include "guicontroller.hxx"
|
||||
|
||||
#include <iostream>
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "audiobuffer.hxx"
|
||||
#include "eventhandler.hxx"
|
||||
#include "controller/gui.hxx"
|
||||
#include "controller/guicontroller.hxx"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue