AnimeEffects
AnimeEffects copied to clipboard
How to build AnimeEffects?
Is there any instruction to build AnimeEffects? It seems AnimeEffects is built based on qmake so I guessed below build instruction from the .pro
file.
# on Linux (maybe same on macOS)
cd AnimeEffects/src
qmake
make
Edit
OS X users can download AnimeEffects.app from here
These steps seems to work.
I installed Qt 5.8.0 via Homwbrew in maxOS Sierra (10.12.4). And I followed 2nd answer in here since qmake did not work.
Note: I use zsh, so I am not sure whether these steps work for other common shells.
(1) Export a PATH to qt
% vi ~/.zshrc
Add a line below
export PATH="/usr/local/Cellar/qt/5.8.0_2/bin:$PATH"
(Change 5.8.0_2 to your qt version)
Then save .zshrc
and
% source ~/.zshrc
(2) Reconfiguring Xcode
% sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
(3) Modify qdevice.pri
% vi /usr/local/Cellar/qt/5.8.0_2/mkspecs/qdevice.pri
Add this line.
!host_build:QMAKE_MAC_SDK = macosx10.12
(4) Go to src directory
% qmake
% make
Hi, hkrn. I build with QtCreator, so I don't know much other methods. However, I didn't do anything special, so I think you can build it with Qt's common approach.
Hi All, Just FYI, I could build AnimeEffect on Windows with qmake and nmake.
environment
- Windows 10 Home with Anniversary Update
- Visual Studio 2017 Community
- Qt 5.7 installed
steps
- launch
x64 Native Tools Command Prompt for VS 2017
tool - type following:
cd <path to AnimeEffects.git repo>\src
qmake AnimeEffects.pro
nmake
nothing special :).