AnimeEffects icon indicating copy to clipboard operation
AnimeEffects copied to clipboard

How to build AnimeEffects?

Open hkrn opened this issue 7 years ago • 3 comments

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

hkrn avatar Apr 11 '17 18:04 hkrn

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

reference

(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

j82dg5 avatar Apr 11 '17 21:04 j82dg5

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.

hidefuku avatar Apr 11 '17 23:04 hidefuku

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

  1. launch x64 Native Tools Command Prompt for VS 2017 tool
  2. type following:
cd <path to AnimeEffects.git repo>\src
qmake AnimeEffects.pro
nmake 

nothing special :).

Nanashia avatar Apr 15 '17 05:04 Nanashia