Skip to content

Commit

Permalink
filters: moved to own lib
Browse files Browse the repository at this point in the history
  • Loading branch information
gustafsson committed Oct 9, 2014
1 parent dcdd1d6 commit 1e3b388
Show file tree
Hide file tree
Showing 47 changed files with 43 additions and 2 deletions.
2 changes: 2 additions & 0 deletions features/sawelibs.prf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ INCLUDEPATH += \
$$SAWEROOT/lib/justmisc \
$$SAWEROOT/lib/signal \
$$SAWEROOT/lib/tfr \
$$SAWEROOT/lib/filters \
$$SAWEROOT/lib/heightmap \
$$SAWEROOT/lib/tfrheightmap \
$$SAWEROOT/lib/heightmapview \
Expand Down Expand Up @@ -38,6 +39,7 @@ LIBS += \
-L$$SAWEROOT/lib/gpumisc -lgpumisc \
-L$$SAWEROOT/lib/signal -lsignal \
-L$$SAWEROOT/lib/tfr -ltfr \
-L$$SAWEROOT/lib/filters -lfilters \
-L$$SAWEROOT/lib/heightmap -lheightmap \
-L$$SAWEROOT/lib/tfrheightmap -ltfrheightmap \
-L$$SAWEROOT/lib/heightmapview -lheightmapview \
Expand Down
40 changes: 40 additions & 0 deletions lib/filters/filters.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This builds a static library
# Use Makefile.unittest to build and run a unit test

TARGET = filters
TEMPLATE = lib
win32:TEMPLATE = vclib
win32:CONFIG += debug_and_release

CONFIG += staticlib warn_on
CONFIG += c++11 buildflags
CONFIG += tmpdir

QT += widgets

PWD = $$_PRO_FILE_PWD_

SOURCES += \
$$PWD/filters/*.cpp \
$$PWD/filters/support/*.cpp \

HEADERS += \
$$PWD/filters/*.h \
$$PWD/filters/support/*.h \

INCLUDEPATH += ../backtrace ../gpumisc ../signal ../tfr ../justmisc
win32: INCLUDEPATH += ../sonicawe-winlib

macx:exists(/opt/local/include/): INCLUDEPATH += /opt/local/include/ # macports
macx:exists(/usr/local/include/): INCLUDEPATH += /usr/local/include/ # homebrew

OTHER_FILES += \
LICENSE \
README.txt \
*.pro \

win32 {
othersources.input = OTHER_FILES
othersources.output = ${QMAKE_FILE_NAME}
QMAKE_EXTRA_COMPILERS += othersources
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions sonicawe.pro
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ SUBDIRS = \
lib/gpumisc \
lib/signal \
lib/tfr \
lib/filters \
lib/heightmap \
lib/tfrheightmap \
lib/heightmapview \
Expand Down
2 changes: 0 additions & 2 deletions src/src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ PWD = $$_PRO_FILE_PWD_

SOURCES += \
$$PWD/adapters/*.cpp \
$$PWD/filters/*.cpp \
$$PWD/sawe/*.cpp \
$$PWD/test/*.cpp \
$$PWD/tools/*.cpp \
Expand All @@ -62,7 +61,6 @@ win32:SOURCES += sonicawe.rc \

HEADERS += \
$$PWD/adapters/*.h \
$$PWD/filters/*.h \
$$PWD/sawe/*.h \
$$PWD/test/*.h \
$$PWD/tools/*.h \
Expand Down

0 comments on commit 1e3b388

Please sign in to comment.