mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-01 05:46:06 -04:00
squashed linux packaging commits
Squashed commit of the following: commit e7261977580bfd08d08717c27732eb0b0f534bb2 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Tue Dec 8 11:25:00 2015 +0000 build signed source package commit e652848b5e2d5dadfe1143282af204c13f8db418 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Sun Dec 6 12:51:42 2015 +0000 linux packaging helper script commit 0c8bf8fcea9d62692c3e973a277c9014b9ef636b Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Sat Dec 5 21:38:37 2015 +0000 changelog commit d6c6815d3a59779e03119c0546f01c778188c918 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Sat Dec 5 21:37:32 2015 +0000 now it's all qmake commit c37673a0d747134766bf9a1c3a898bbb9e416ed6 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Sat Dec 5 08:46:27 2015 +0000 don't symlink in manual makefile commit 2593da2401cbb5b83ea8ec188a3450f52595186e Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Thu Dec 3 16:53:31 2015 +0000 postfix the version with an 'a' commit 03d4bdde55d428354d8a8ebe4827ff191162bcb1 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Thu Dec 3 14:55:33 2015 +0000 use MAKE_OPTS env if set commit 6f7847c7c0e3eb32ec14e60736a4e2a7b5175a7c Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Thu Dec 3 14:36:21 2015 +0000 also install dark theme, build only amd64 for now commit e36d863b3101d4440816e08b9af704e89316d2e9 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Wed Dec 2 18:01:42 2015 +0000 rules.dh7 commit 0e35f2ddf3b70eaf0040fcac6453d79c1a9571c8 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Wed Dec 2 17:57:57 2015 +0000 deps commit 492b4ae7aa41374bf89cd8accf82d5ab0283a5f9 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Wed Dec 2 10:40:04 2015 +0000 typo commit 6f0ed09a37849323f220d9aa50ac7c6bd3d411cb Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Wed Dec 2 10:37:55 2015 +0000 deps and version commit 82f2fd07b6703d5699926c297dee25a59111acb9 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Wed Dec 2 09:50:00 2015 +0000 rev logic commit e5d33b62236e0b33653fa79d82274e157cb26bc2 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Wed Dec 2 09:17:50 2015 +0000 create bin and libdir commit 84153860e6861a43ffc0f1073d462f2452f7e7c4 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Wed Dec 2 08:48:23 2015 +0000 support prefix commit a5da29a15a15fc130ef1147ed495d86238e7a2f3 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Wed Dec 2 08:45:52 2015 +0000 support DESTDIR commit da1be8b940fb3e51632ed4a35b6afe7defe17848 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Tue Dec 1 21:06:01 2015 +0000 rev clean logic commit 738c78a93b159d27fc5c00361bb621cd864ac224 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Tue Dec 1 20:59:34 2015 +0000 better make clean commit 2bf382412e573cd93c8a744b374196d5ea59c218 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Tue Dec 1 20:44:48 2015 +0000 debian folder commit af420ef5d98744315fa526f0d072197b00b1af28 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Tue Dec 1 18:18:51 2015 +0000 make clean ./Bin too commit 6d0243a10dac725251ea566ad717ff9b4fd0eea2 Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Tue Dec 1 17:56:31 2015 +0000 lowercase commit 41b4eaef6d9adbbb8ec00a9a15c20498f300924e Author: Gambhiro <gambhiro.bhikkhu.85@gmail.com> Date: Tue Dec 1 17:34:21 2015 +0000 configure and Makefile
This commit is contained in:
@ -4,56 +4,62 @@ CONFIG += shared
|
||||
CONFIG -= app_bundle
|
||||
CONFIG -= qt
|
||||
|
||||
include(../shared_settings.pri)
|
||||
include(../defaults.pri)
|
||||
|
||||
!macx:PRECOMPILED_HEADER = ../../../Source/Ember/EmberPch.h
|
||||
PRJ_DIR = $$SRC_DIR/Ember
|
||||
|
||||
QMAKE_CXXFLAGS += -D_USRDLL
|
||||
target.path = $$LIB_INSTALL_DIR
|
||||
INSTALLS += target
|
||||
|
||||
!macx:PRECOMPILED_HEADER = $$PRJ_DIR/EmberPch.h
|
||||
|
||||
QMAKE_CXXFLAGS += -D_USRDLL
|
||||
QMAKE_CXXFLAGS += -D_CONSOLE
|
||||
QMAKE_CXXFLAGS += -BUILDING_EMBER
|
||||
|
||||
SOURCES += \
|
||||
../../../Source/Ember/Affine2D.cpp \
|
||||
../../../Source/Ember/DllMain.cpp \
|
||||
../../../Source/Ember/Ember.cpp \
|
||||
../../../Source/Ember/EmberPch.cpp \
|
||||
../../../Source/Ember/Renderer.cpp \
|
||||
../../../Source/Ember/RendererBase.cpp
|
||||
$$PRJ_DIR/Affine2D.cpp \
|
||||
$$PRJ_DIR/DllMain.cpp \
|
||||
$$PRJ_DIR/Ember.cpp \
|
||||
$$PRJ_DIR/EmberPch.cpp \
|
||||
$$PRJ_DIR/RendererBase.cpp \
|
||||
$$PRJ_DIR/Renderer.cpp
|
||||
|
||||
include(deployment.pri)
|
||||
qtcAddDeployment()
|
||||
|
||||
HEADERS += \
|
||||
../../../Source/Ember/Affine2D.h \
|
||||
../../../Source/Ember/CarToRas.h \
|
||||
../../../Source/Ember/DensityFilter.h \
|
||||
../../../Source/Ember/Ember.h \
|
||||
../../../Source/Ember/EmberDefines.h \
|
||||
../../../Source/Ember/EmberPch.h \
|
||||
../../../Source/Ember/EmberToXml.h \
|
||||
../../../Source/Ember/Interpolate.h \
|
||||
../../../Source/Ember/Isaac.h \
|
||||
../../../Source/Ember/Iterator.h \
|
||||
../../../Source/Ember/Palette.h \
|
||||
../../../Source/Ember/PaletteList.h \
|
||||
../../../Source/Ember/Point.h \
|
||||
../../../Source/Ember/Renderer.h \
|
||||
../../../Source/Ember/RendererBase.h \
|
||||
../../../Source/Ember/SheepTools.h \
|
||||
../../../Source/Ember/SpatialFilter.h \
|
||||
../../../Source/Ember/TemporalFilter.h \
|
||||
../../../Source/Ember/Timing.h \
|
||||
../../../Source/Ember/Utils.h \
|
||||
../../../Source/Ember/Variation.h \
|
||||
../../../Source/Ember/VariationList.h \
|
||||
../../../Source/Ember/Variations01.h \
|
||||
../../../Source/Ember/Variations02.h \
|
||||
../../../Source/Ember/Variations03.h \
|
||||
../../../Source/Ember/Variations04.h \
|
||||
../../../Source/Ember/Variations05.h \
|
||||
../../../Source/Ember/Variations06.h \
|
||||
../../../Source/Ember/VariationsDC.h \
|
||||
../../../Source/Ember/Xform.h \
|
||||
../../../Source/Ember/XmlToEmber.h \
|
||||
../../../Source/Ember/EmberMotion.h
|
||||
$$PRJ_DIR/Affine2D.h \
|
||||
$$PRJ_DIR/CarToRas.h \
|
||||
$$PRJ_DIR/Curves.h \
|
||||
$$PRJ_DIR/DensityFilter.h \
|
||||
$$PRJ_DIR/EmberDefines.h \
|
||||
$$PRJ_DIR/Ember.h \
|
||||
$$PRJ_DIR/EmberMotion.h \
|
||||
$$PRJ_DIR/EmberPch.h \
|
||||
$$PRJ_DIR/EmberToXml.h \
|
||||
$$PRJ_DIR/Interpolate.h \
|
||||
$$PRJ_DIR/Isaac.h \
|
||||
$$PRJ_DIR/Iterator.h \
|
||||
$$PRJ_DIR/Palette.h \
|
||||
$$PRJ_DIR/PaletteList.h \
|
||||
$$PRJ_DIR/Point.h \
|
||||
$$PRJ_DIR/RendererBase.h \
|
||||
$$PRJ_DIR/Renderer.h \
|
||||
$$PRJ_DIR/SheepTools.h \
|
||||
$$PRJ_DIR/SpatialFilter.h \
|
||||
$$PRJ_DIR/TemporalFilter.h \
|
||||
$$PRJ_DIR/Timing.h \
|
||||
$$PRJ_DIR/Utils.h \
|
||||
$$PRJ_DIR/Variation.h \
|
||||
$$PRJ_DIR/VariationList.h \
|
||||
$$PRJ_DIR/Variations01.h \
|
||||
$$PRJ_DIR/Variations02.h \
|
||||
$$PRJ_DIR/Variations03.h \
|
||||
$$PRJ_DIR/Variations04.h \
|
||||
$$PRJ_DIR/Variations05.h \
|
||||
$$PRJ_DIR/Variations06.h \
|
||||
$$PRJ_DIR/VariationsDC.h \
|
||||
$$PRJ_DIR/Xform.h \
|
||||
$$PRJ_DIR/XmlToEmber.h
|
||||
|
||||
|
@ -3,26 +3,33 @@ CONFIG += console
|
||||
CONFIG -= app_bundle
|
||||
CONFIG -= qt
|
||||
|
||||
include(../shared_settings.pri)
|
||||
TARGET = emberanimate
|
||||
|
||||
include(../defaults.pri)
|
||||
|
||||
PRJ_DIR = $$SRC_DIR/EmberAnimate
|
||||
|
||||
target.path = $$BIN_INSTALL_DIR
|
||||
INSTALLS += target
|
||||
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmber
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmberCL
|
||||
|
||||
!macx:PRECOMPILED_HEADER = ../../../Source/EmberCommon/EmberCommonPch.h
|
||||
!macx:PRECOMPILED_HEADER = $$SRC_COMMON_DIR/EmberCommonPch.h
|
||||
|
||||
SOURCES += \
|
||||
../../../Source/EmberAnimate/EmberAnimate.cpp \
|
||||
../../../Source/EmberCommon/EmberCommonPch.cpp
|
||||
$$PRJ_DIR/EmberAnimate.cpp \
|
||||
$$SRC_COMMON_DIR/EmberCommonPch.cpp
|
||||
|
||||
include(deployment.pri)
|
||||
qtcAddDeployment()
|
||||
|
||||
HEADERS += \
|
||||
../../../Source/EmberAnimate/EmberAnimate.h \
|
||||
../../../Source/EmberCommon/EmberCommon.h \
|
||||
../../../Source/EmberCommon/EmberCommonPch.h \
|
||||
../../../Source/EmberCommon/EmberOptions.h \
|
||||
../../../Source/EmberCommon/JpegUtils.h \
|
||||
../../../Source/EmberCommon/SimpleGlob.h \
|
||||
../../../Source/EmberCommon/SimpleOpt.h
|
||||
$$PRJ_DIR/EmberAnimate.h \
|
||||
$$SRC_COMMON_DIR/EmberCommon.h \
|
||||
$$SRC_COMMON_DIR/EmberCommonPch.h \
|
||||
$$SRC_COMMON_DIR/EmberOptions.h \
|
||||
$$SRC_COMMON_DIR/JpegUtils.h \
|
||||
$$SRC_COMMON_DIR/SimpleGlob.h \
|
||||
$$SRC_COMMON_DIR/SimpleOpt.h
|
||||
|
||||
|
@ -4,40 +4,45 @@ CONFIG += shared
|
||||
CONFIG -= app_bundle
|
||||
CONFIG -= qt
|
||||
|
||||
include(../shared_settings.pri)
|
||||
include(../defaults.pri)
|
||||
|
||||
PRJ_DIR = $$SRC_DIR/EmberCL
|
||||
|
||||
target.path = $$LIB_INSTALL_DIR
|
||||
INSTALLS += target
|
||||
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmber
|
||||
|
||||
!macx:PRECOMPILED_HEADER = ../../../Source/EmberCL/EmberCLPch.h
|
||||
!macx:PRECOMPILED_HEADER = $$PRJ_DIR/EmberCLPch.h
|
||||
|
||||
QMAKE_CXXFLAGS += -D_USRDLL
|
||||
QMAKE_CXXFLAGS += -D_USRDLL
|
||||
QMAKE_CXXFLAGS += -D_CONSOLE
|
||||
QMAKE_CXXFLAGS += -BUILDING_EMBERCL
|
||||
|
||||
SOURCES += \
|
||||
../../../Source/EmberCL/DllMain.cpp \
|
||||
../../../Source/EmberCL/DEOpenCLKernelCreator.cpp \
|
||||
../../../Source/EmberCL/FinalAccumOpenCLKernelCreator.cpp \
|
||||
../../../Source/EmberCL/FunctionMapper.cpp \
|
||||
../../../Source/EmberCL/IterOpenCLKernelCreator.cpp \
|
||||
../../../Source/EmberCL/OpenCLInfo.cpp \
|
||||
../../../Source/EmberCL/OpenCLWrapper.cpp \
|
||||
../../../Source/EmberCL/RendererCL.cpp \
|
||||
../../../Source/EmberCL/RendererCLDevice.cpp
|
||||
$$PRJ_DIR/DEOpenCLKernelCreator.cpp \
|
||||
$$PRJ_DIR/DllMain.cpp \
|
||||
$$PRJ_DIR/FinalAccumOpenCLKernelCreator.cpp \
|
||||
$$PRJ_DIR/FunctionMapper.cpp \
|
||||
$$PRJ_DIR/IterOpenCLKernelCreator.cpp \
|
||||
$$PRJ_DIR/OpenCLInfo.cpp \
|
||||
$$PRJ_DIR/OpenCLWrapper.cpp \
|
||||
$$PRJ_DIR/RendererCL.cpp \
|
||||
$$PRJ_DIR/RendererClDevice.cpp
|
||||
|
||||
include(deployment.pri)
|
||||
qtcAddDeployment()
|
||||
|
||||
HEADERS += \
|
||||
../../../Source/EmberCL/DEOpenCLKernelCreator.h \
|
||||
../../../Source/EmberCL/EmberCLFunctions.h \
|
||||
../../../Source/EmberCL/EmberCLPch.h \
|
||||
../../../Source/EmberCL/EmberCLStructs.h \
|
||||
../../../Source/EmberCL/FinalAccumOpenCLKernelCreator.h \
|
||||
../../../Source/EmberCL/FunctionMapper.h \
|
||||
../../../Source/EmberCL/IterOpenCLKernelCreator.h \
|
||||
../../../Source/EmberCL/OpenCLInfo.h \
|
||||
../../../Source/EmberCL/OpenCLWrapper.h \
|
||||
../../../Source/EmberCL/RendererCL.h \
|
||||
../../../Source/EmberCL/RendererCLDevice.h
|
||||
$$PRJ_DIR/DEOpenCLKernelCreator.h \
|
||||
$$PRJ_DIR/EmberCLFunctions.h \
|
||||
$$PRJ_DIR/EmberCLPch.h \
|
||||
$$PRJ_DIR/EmberCLStructs.h \
|
||||
$$PRJ_DIR/FinalAccumOpenCLKernelCreator.h \
|
||||
$$PRJ_DIR/FunctionMapper.h \
|
||||
$$PRJ_DIR/IterOpenCLKernelCreator.h \
|
||||
$$PRJ_DIR/OpenCLInfo.h \
|
||||
$$PRJ_DIR/OpenCLWrapper.h \
|
||||
$$PRJ_DIR/RendererClDevice.h \
|
||||
$$PRJ_DIR/RendererCL.h
|
||||
|
||||
|
@ -3,26 +3,33 @@ CONFIG += console
|
||||
CONFIG -= app_bundle
|
||||
CONFIG -= qt
|
||||
|
||||
include(../shared_settings.pri)
|
||||
TARGET = embergenome
|
||||
|
||||
include(../defaults.pri)
|
||||
|
||||
target.path = $$BIN_INSTALL_DIR
|
||||
INSTALLS += target
|
||||
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmber
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmberCL
|
||||
|
||||
!macx:PRECOMPILED_HEADER = ../../../Source/EmberCommon/EmberCommonPch.h
|
||||
PRJ_DIR = $$SRC_DIR/EmberGenome
|
||||
|
||||
!macx:PRECOMPILED_HEADER = $$SRC_COMMON_DIR/EmberCommonPch.h
|
||||
|
||||
SOURCES += \
|
||||
../../../Source/EmberGenome/EmberGenome.cpp \
|
||||
../../../Source/EmberCommon/EmberCommonPch.cpp
|
||||
$$PRJ_DIR/EmberGenome.cpp \
|
||||
$$SRC_COMMON_DIR/EmberCommonPch.cpp
|
||||
|
||||
include(deployment.pri)
|
||||
qtcAddDeployment()
|
||||
|
||||
HEADERS += \
|
||||
../../../Source/EmberGenome/EmberGenome.h \
|
||||
../../../Source/EmberCommon/EmberCommon.h \
|
||||
../../../Source/EmberCommon/EmberCommonPch.h \
|
||||
../../../Source/EmberCommon/EmberOptions.h \
|
||||
../../../Source/EmberCommon/JpegUtils.h \
|
||||
../../../Source/EmberCommon/SimpleGlob.h \
|
||||
../../../Source/EmberCommon/SimpleOpt.h
|
||||
$$PRJ_DIR/EmberGenome.h \
|
||||
$$SRC_COMMON_DIR/EmberCommon.h \
|
||||
$$SRC_COMMON_DIR/EmberCommonPch.h \
|
||||
$$SRC_COMMON_DIR/EmberOptions.h \
|
||||
$$SRC_COMMON_DIR/JpegUtils.h \
|
||||
$$SRC_COMMON_DIR/SimpleGlob.h \
|
||||
$$SRC_COMMON_DIR/SimpleOpt.h
|
||||
|
||||
|
@ -3,26 +3,33 @@ CONFIG += console
|
||||
CONFIG -= app_bundle
|
||||
CONFIG -= qt
|
||||
|
||||
include(../shared_settings.pri)
|
||||
TARGET = emberrender
|
||||
|
||||
include(../defaults.pri)
|
||||
|
||||
PRJ_DIR = $$SRC_DIR/EmberRender
|
||||
|
||||
target.path = $$BIN_INSTALL_DIR
|
||||
INSTALLS += target
|
||||
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmber
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmberCL
|
||||
|
||||
!macx:PRECOMPILED_HEADER = ../../../Source/EmberCommon/EmberCommonPch.h
|
||||
!macx:PRECOMPILED_HEADER = $$SRC_COMMON_DIR/EmberCommonPch.h
|
||||
|
||||
SOURCES += \
|
||||
../../../Source/EmberRender/EmberRender.cpp \
|
||||
../../../Source/EmberCommon/EmberCommonPch.cpp
|
||||
$$PRJ_DIR/EmberRender.cpp \
|
||||
$$SRC_COMMON_DIR/EmberCommonPch.cpp
|
||||
|
||||
include(deployment.pri)
|
||||
qtcAddDeployment()
|
||||
|
||||
HEADERS += \
|
||||
../../../Source/EmberRender/EmberRender.h \
|
||||
../../../Source/EmberCommon/EmberCommon.h \
|
||||
../../../Source/EmberCommon/EmberCommonPch.h \
|
||||
../../../Source/EmberCommon/EmberOptions.h \
|
||||
../../../Source/EmberCommon/JpegUtils.h \
|
||||
../../../Source/EmberCommon/SimpleGlob.h \
|
||||
../../../Source/EmberCommon/SimpleOpt.h
|
||||
$$PRJ_DIR/EmberRender.h \
|
||||
$$SRC_COMMON_DIR/EmberCommon.h \
|
||||
$$SRC_COMMON_DIR/EmberCommonPch.h \
|
||||
$$SRC_COMMON_DIR/EmberOptions.h \
|
||||
$$SRC_COMMON_DIR/JpegUtils.h \
|
||||
$$SRC_COMMON_DIR/SimpleGlob.h \
|
||||
$$SRC_COMMON_DIR/SimpleOpt.h
|
||||
|
||||
|
@ -1,108 +1,113 @@
|
||||
#-------------------------------------------------
|
||||
#
|
||||
# Project created by QtCreator 2014-12-09T21:18:06
|
||||
#
|
||||
#-------------------------------------------------
|
||||
|
||||
QT += core gui opengl concurrent
|
||||
TEMPLATE = app
|
||||
QT += core gui opengl concurrent
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||
|
||||
TARGET = Fractorium
|
||||
TEMPLATE = app
|
||||
TARGET = fractorium
|
||||
|
||||
include(../shared_settings.pri)
|
||||
include(../defaults.pri)
|
||||
|
||||
PRJ_DIR = $$SRC_DIR/Fractorium
|
||||
|
||||
target.path = $$BIN_INSTALL_DIR
|
||||
INSTALLS += target
|
||||
|
||||
assets.path = $$SHARE_INSTALL_DIR
|
||||
assets.files = $$ASSETS_DIR/flam3-palettes.xml $$ASSETS_DIR/dark.qss
|
||||
INSTALLS += assets
|
||||
|
||||
# FIXME: move to Data and install to $$SHARE_INSTALL_DIR ?
|
||||
macx:ICON = ../../package/osx/Fractorium.icns
|
||||
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmber
|
||||
LIBS += -L$$absolute_path($$DESTDIR) -lEmberCL
|
||||
|
||||
INCLUDEPATH += ../../../Source/Fractorium
|
||||
INCLUDEPATH += $$PRJ_DIR
|
||||
|
||||
!macx:PRECOMPILED_HEADER = ../../../Source/Fractorium/FractoriumPch.h
|
||||
!macx:PRECOMPILED_HEADER = $$PRJ_DIR/FractoriumPch.h
|
||||
|
||||
SOURCES += \
|
||||
../../../Source/Fractorium/AboutDialog.cpp \
|
||||
../../../Source/Fractorium/CurvesGraphicsView.cpp \
|
||||
../../../Source/Fractorium/DoubleSpinBox.cpp \
|
||||
../../../Source/Fractorium/FinalRenderDialog.cpp \
|
||||
../../../Source/Fractorium/FinalRenderEmberController.cpp \
|
||||
../../../Source/Fractorium/Fractorium.cpp \
|
||||
../../../Source/Fractorium/FractoriumEmberController.cpp \
|
||||
../../../Source/Fractorium/FractoriumInfo.cpp \
|
||||
../../../Source/Fractorium/FractoriumLibrary.cpp \
|
||||
../../../Source/Fractorium/FractoriumMenus.cpp \
|
||||
../../../Source/Fractorium/FractoriumPalette.cpp \
|
||||
../../../Source/Fractorium/FractoriumParams.cpp \
|
||||
../../../Source/Fractorium/FractoriumPch.cpp \
|
||||
../../../Source/Fractorium/FractoriumRender.cpp \
|
||||
../../../Source/Fractorium/FractoriumSettings.cpp \
|
||||
../../../Source/Fractorium/FractoriumToolbar.cpp \
|
||||
../../../Source/Fractorium/FractoriumXaos.cpp \
|
||||
../../../Source/Fractorium/FractoriumXforms.cpp \
|
||||
../../../Source/Fractorium/FractoriumXformsAffine.cpp \
|
||||
../../../Source/Fractorium/FractoriumXformsColor.cpp \
|
||||
../../../Source/Fractorium/FractoriumXformsSelect.cpp \
|
||||
../../../Source/Fractorium/FractoriumXformsVariations.cpp \
|
||||
../../../Source/Fractorium/GLEmberController.cpp \
|
||||
../../../Source/Fractorium/GLWidget.cpp \
|
||||
../../../Source/Fractorium/Main.cpp \
|
||||
../../../Source/Fractorium/OptionsDialog.cpp \
|
||||
../../../Source/Fractorium/VariationsDialog.cpp \
|
||||
../../../Source/Fractorium/SpinBox.cpp \
|
||||
../../../Source/Fractorium/csshighlighter.cpp \
|
||||
../../../Source/Fractorium/qcssparser.cpp \
|
||||
../../../Source/Fractorium/qcssscanner.cpp \
|
||||
../../../Source/Fractorium/QssDialog.cpp \
|
||||
../../../Source/Fractorium/QssTextEdit.cpp
|
||||
$$PRJ_DIR/AboutDialog.cpp \
|
||||
$$PRJ_DIR/csshighlighter.cpp \
|
||||
$$PRJ_DIR/CurvesGraphicsView.cpp \
|
||||
$$PRJ_DIR/DoubleSpinBox.cpp \
|
||||
$$PRJ_DIR/FinalRenderDialog.cpp \
|
||||
$$PRJ_DIR/FinalRenderEmberController.cpp \
|
||||
$$PRJ_DIR/Fractorium.cpp \
|
||||
$$PRJ_DIR/FractoriumEmberController.cpp \
|
||||
$$PRJ_DIR/FractoriumInfo.cpp \
|
||||
$$PRJ_DIR/FractoriumLibrary.cpp \
|
||||
$$PRJ_DIR/FractoriumMenus.cpp \
|
||||
$$PRJ_DIR/FractoriumPalette.cpp \
|
||||
$$PRJ_DIR/FractoriumParams.cpp \
|
||||
$$PRJ_DIR/FractoriumPch.cpp \
|
||||
$$PRJ_DIR/FractoriumRender.cpp \
|
||||
$$PRJ_DIR/FractoriumSettings.cpp \
|
||||
$$PRJ_DIR/FractoriumToolbar.cpp \
|
||||
$$PRJ_DIR/FractoriumXaos.cpp \
|
||||
$$PRJ_DIR/FractoriumXformsAffine.cpp \
|
||||
$$PRJ_DIR/FractoriumXformsColor.cpp \
|
||||
$$PRJ_DIR/FractoriumXforms.cpp \
|
||||
$$PRJ_DIR/FractoriumXformsSelect.cpp \
|
||||
$$PRJ_DIR/FractoriumXformsVariations.cpp \
|
||||
$$PRJ_DIR/GLEmberController.cpp \
|
||||
$$PRJ_DIR/GLWidget.cpp \
|
||||
$$PRJ_DIR/Main.cpp \
|
||||
$$PRJ_DIR/OptionsDialog.cpp \
|
||||
$$PRJ_DIR/qcssparser.cpp \
|
||||
$$PRJ_DIR/qcssscanner.cpp \
|
||||
$$PRJ_DIR/QssDialog.cpp \
|
||||
$$PRJ_DIR/QssTextEdit.cpp \
|
||||
$$PRJ_DIR/SpinBox.cpp \
|
||||
$$PRJ_DIR/VariationsDialog.cpp
|
||||
|
||||
HEADERS += \
|
||||
../../../Source/Fractorium/AboutDialog.h \
|
||||
../../../Source/Fractorium/CurvesGraphicsView.h \
|
||||
../../../Source/Fractorium/DoubleSpinBox.h \
|
||||
../../../Source/Fractorium/EmberFile.h \
|
||||
../../../Source/Fractorium/EmberTreeWidgetItem.h \
|
||||
../../../Source/Fractorium/FinalRenderDialog.h \
|
||||
../../../Source/Fractorium/FinalRenderEmberController.h \
|
||||
../../../Source/Fractorium/Fractorium.h \
|
||||
../../../Source/Fractorium/FractoriumEmberController.h \
|
||||
../../../Source/Fractorium/FractoriumPch.h \
|
||||
../../../Source/Fractorium/FractoriumSettings.h \
|
||||
../../../Source/Fractorium/GLEmberController.h \
|
||||
../../../Source/Fractorium/GLWidget.h \
|
||||
../../../Source/Fractorium/OptionsDialog.h \
|
||||
../../../Source/Fractorium/resource.h \
|
||||
../../../Source/Fractorium/SpinBox.h \
|
||||
../../../Source/Fractorium/StealthComboBox.h \
|
||||
../../../Source/Fractorium/TableWidget.h \
|
||||
../../../Source/Fractorium/TwoButtonComboWidget.h \
|
||||
../../../Source/Fractorium/VariationTreeWidgetItem.h \
|
||||
../../../Source/EmberCommon/EmberCommon.h \
|
||||
../../../Source/EmberCommon/JpegUtils.h \
|
||||
../../../Source/EmberCommon/EmberCommonPch.h \
|
||||
../../../Source/Fractorium/FractoriumCommon.h \
|
||||
../../../Source/Fractorium/DoubleSpinBoxTableItemDelegate.h \
|
||||
../../../Source/Fractorium/PaletteTableWidgetItem.h \
|
||||
../../../Source/Fractorium/VariationsDialog.h \
|
||||
../../../Source/Fractorium/csshighlighter.h \
|
||||
../../../Source/Fractorium/qcssparser.h \
|
||||
../../../Source/Fractorium/qcssscanner.h \
|
||||
../../../Source/Fractorium/qfunctions.h \
|
||||
../../../Source/Fractorium/QssDialog.h \
|
||||
../../../Source/Fractorium/QssTextEdit.h
|
||||
HEADERS += \
|
||||
$$SRC_COMMON_DIR/EmberCommon.h \
|
||||
$$SRC_COMMON_DIR/EmberCommonPch.h \
|
||||
$$SRC_COMMON_DIR/JpegUtils.h \
|
||||
$$PRJ_DIR/AboutDialog.h \
|
||||
$$PRJ_DIR/csshighlighter.h \
|
||||
$$PRJ_DIR/CurvesGraphicsView.h \
|
||||
$$PRJ_DIR/DoubleSpinBox.h \
|
||||
$$PRJ_DIR/DoubleSpinBoxTableItemDelegate.h \
|
||||
$$PRJ_DIR/EmberFile.h \
|
||||
$$PRJ_DIR/EmberTreeWidgetItem.h \
|
||||
$$PRJ_DIR/FinalRenderDialog.h \
|
||||
$$PRJ_DIR/FinalRenderEmberController.h \
|
||||
$$PRJ_DIR/FractoriumCommon.h \
|
||||
$$PRJ_DIR/FractoriumEmberController.h \
|
||||
$$PRJ_DIR/Fractorium.h \
|
||||
$$PRJ_DIR/FractoriumPch.h \
|
||||
$$PRJ_DIR/FractoriumSettings.h \
|
||||
$$PRJ_DIR/GLEmberController.h \
|
||||
$$PRJ_DIR/GLWidget.h \
|
||||
$$PRJ_DIR/OptionsDialog.h \
|
||||
$$PRJ_DIR/PaletteTableWidgetItem.h \
|
||||
$$PRJ_DIR/qcssparser.h \
|
||||
$$PRJ_DIR/qcssscanner.h \
|
||||
$$PRJ_DIR/qfunctions.h \
|
||||
$$PRJ_DIR/QssDialog.h \
|
||||
$$PRJ_DIR/QssTextEdit.h \
|
||||
$$PRJ_DIR/resource.h \
|
||||
$$PRJ_DIR/SpinBox.h \
|
||||
$$PRJ_DIR/StealthComboBox.h \
|
||||
$$PRJ_DIR/TableWidget.h \
|
||||
$$PRJ_DIR/TwoButtonComboWidget.h \
|
||||
$$PRJ_DIR/VariationsDialog.h \
|
||||
$$PRJ_DIR/VariationTreeWidgetItem.h
|
||||
|
||||
FORMS += \
|
||||
../../../Source/Fractorium/AboutDialog.ui \
|
||||
../../../Source/Fractorium/FinalRenderDialog.ui \
|
||||
../../../Source/Fractorium/Fractorium.ui \
|
||||
../../../Source/Fractorium/VariationsDialog.ui \
|
||||
../../../Source/Fractorium/OptionsDialog.ui \
|
||||
../../../Source/Fractorium/QssDialog.ui
|
||||
FORMS += \
|
||||
$$PRJ_DIR/AboutDialog.ui \
|
||||
$$PRJ_DIR/FinalRenderDialog.ui \
|
||||
$$PRJ_DIR/Fractorium.ui \
|
||||
$$PRJ_DIR/OptionsDialog.ui \
|
||||
$$PRJ_DIR/QssDialog.ui \
|
||||
$$PRJ_DIR/VariationsDialog.ui
|
||||
|
||||
OTHER_FILES += \
|
||||
../../../Source/Fractorium/Fractorium.aps \
|
||||
../../../Source/Fractorium/Fractorium.rc
|
||||
$$PRJ_DIR/Fractorium.aps \
|
||||
$$PRJ_DIR/Fractorium.rc
|
||||
|
||||
RESOURCES += \
|
||||
../../../Source/Fractorium/Fractorium.qrc
|
||||
$$PRJ_DIR/Fractorium.qrc
|
||||
|
||||
|
@ -1,47 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
REBUILD=''
|
||||
NVIDIA=''
|
||||
NATIVE=''
|
||||
CONCURRENCY='-j4'
|
||||
QMAKE=${QMAKE:/usr/bin/qmake}
|
||||
RELEASE='CONFIG+=release CONFIG-=debug'
|
||||
|
||||
while test $# -gt 0
|
||||
do
|
||||
case "$1" in
|
||||
--rebuild) REBUILD='1'
|
||||
;;
|
||||
--nvidia) NVIDIA="CONFIG += nvidia"
|
||||
;;
|
||||
--native) NATIVE="CONFIG += native"
|
||||
;;
|
||||
--travis) CONCURRENCY="-j1"
|
||||
;;
|
||||
--debug) RELEASE="CONFIG+=debug CONFIG-=release"
|
||||
;;
|
||||
--*) echo "bad option $1"; exit 1
|
||||
;;
|
||||
*) echo "unrecognised argument $1"; exit 1
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
DIR=$( cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )
|
||||
|
||||
for PROJ in ${DIR}/{Ember,EmberCL,EmberGenome,EmberRender,EmberAnimate,Fractorium}
|
||||
do
|
||||
pushd $PROJ
|
||||
if [ "x1" = "x$REBUILD" ]; then
|
||||
make clean
|
||||
fi
|
||||
$QMAKE "$NVIDIA" "$NATIVE" $RELEASE
|
||||
make $CONCURRENCY
|
||||
if [ "x$?" != "x0" ]; then
|
||||
echo "Build failed! Check output for errors."
|
||||
exit 1
|
||||
fi
|
||||
popd
|
||||
done
|
||||
|
@ -1,15 +1,25 @@
|
||||
VERSION = 0.1.4.9
|
||||
VERSION = 0.9.9.2
|
||||
|
||||
# When this file is included:
|
||||
# - $$PWD is ./Builds/QtCreator/
|
||||
# - $(PWD) is the project folder, e.g. ./Builds/QtCreator/Ember/
|
||||
|
||||
LIB_INSTALL_DIR = /usr/lib
|
||||
BIN_INSTALL_DIR = /usr/bin
|
||||
SHARE_INSTALL_DIR = /usr/share/fractorium
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
CONFIG += warn_off
|
||||
DESTDIR = ../../../Bin/release
|
||||
CONFIG += warn_off
|
||||
DESTDIR = $$(PWD)/../../../Bin/release
|
||||
}
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
DESTDIR = ../../../Bin/debug
|
||||
DESTDIR = $$(PWD)/../../../Bin/debug
|
||||
}
|
||||
|
||||
QMAKE_POST_LINK += $$quote(cp --update ../../../Data/flam3-palettes.xml $${DESTDIR}$$escape_expand(\n\t))
|
||||
SRC_DIR = $$(PWD)/../../../Source
|
||||
SRC_COMMON_DIR = $$(PWD)/../../../Source/EmberCommon
|
||||
ASSETS_DIR = $$(PWD)/../../../Data
|
||||
|
||||
macx {
|
||||
LIBS += -framework OpenGL
|
||||
@ -19,7 +29,7 @@ macx {
|
||||
LIBS += -L/usr/local/lib
|
||||
|
||||
INCLUDEPATH += /usr/local/include
|
||||
INCLUDEPATH += ../../../Deps
|
||||
INCLUDEPATH += $(PWD)/../Deps
|
||||
|
||||
QMAKE_MAC_SDK = macosx10.9
|
||||
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9
|
||||
@ -43,10 +53,10 @@ native {
|
||||
QMAKE_CXXFLAGS += -march=k8
|
||||
}
|
||||
|
||||
OBJECTS_DIR = $$DESTDIR/.obj
|
||||
MOC_DIR = $$DESTDIR/.moc
|
||||
RCC_DIR = $$DESTDIR/.qrc
|
||||
UI_DIR = $$DESTDIR/.ui
|
||||
OBJECTS_DIR = $$PWD/.obj
|
||||
MOC_DIR = $$PWD/.moc
|
||||
RCC_DIR = $$PWD/.qrc
|
||||
UI_DIR = $$PWD/.ui
|
||||
|
||||
LIBS += -L/usr/lib -ljpeg
|
||||
LIBS += -L/usr/lib -lpng
|
||||
@ -61,9 +71,9 @@ INCLUDEPATH += /usr/include/GL
|
||||
INCLUDEPATH += /usr/include/glm
|
||||
INCLUDEPATH += /usr/include/tbb
|
||||
INCLUDEPATH += /usr/include/libxml2
|
||||
INCLUDEPATH += ../../../Source/Ember
|
||||
INCLUDEPATH += ../../../Source/EmberCL
|
||||
INCLUDEPATH += ../../../Source/EmberCommon
|
||||
INCLUDEPATH += $$SRC_DIR/Ember
|
||||
INCLUDEPATH += $$SRC_DIR/EmberCL
|
||||
INCLUDEPATH += $$SRC_DIR/EmberCommon
|
||||
|
||||
QMAKE_CXXFLAGS_RELEASE += -O2
|
||||
QMAKE_CXXFLAGS_RELEASE += -DNDEBUG
|
Reference in New Issue
Block a user