2013-01-29 05:09:25 +00:00
|
|
|
CONFIG += staticlib
|
|
|
|
TEMPLATE=lib
|
2013-07-21 07:49:07 +00:00
|
|
|
|
|
|
|
CONFIG(debug, debug|release){
|
|
|
|
DEFINES += DEBUG
|
|
|
|
TARGET=zelda-d
|
|
|
|
}
|
|
|
|
CONFIG(release, release|debug){
|
|
|
|
DEFINES -= DEBUG
|
|
|
|
TARGET=zelda
|
|
|
|
}
|
|
|
|
|
2013-07-21 03:57:20 +00:00
|
|
|
QMAKE_CXXFLAGS += -std=c++0x
|
2013-01-29 05:09:25 +00:00
|
|
|
INCLUDEPATH += include
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
include/utility.hpp \
|
|
|
|
include/utf8.h \
|
2013-02-16 04:22:16 +00:00
|
|
|
include/utf8/unchecked.h \
|
|
|
|
include/utf8/core.h \
|
|
|
|
include/utf8/checked.h \
|
2013-01-29 05:09:25 +00:00
|
|
|
include/Types.hpp \
|
|
|
|
include/TextStream.hpp \
|
|
|
|
include/Stream.hpp \
|
|
|
|
include/Mainpage.hpp \
|
|
|
|
include/InvalidOperationException.hpp \
|
|
|
|
include/IOException.hpp \
|
|
|
|
include/FileNotFoundException.hpp \
|
|
|
|
include/Exception.hpp \
|
|
|
|
include/BinaryWriter.hpp \
|
|
|
|
include/BinaryReader.hpp \
|
2013-02-16 04:22:16 +00:00
|
|
|
include/WiiBanner.hpp \
|
|
|
|
include/WiiFile.hpp \
|
|
|
|
include/WiiSave.hpp \
|
|
|
|
include/WiiSaveReader.hpp \
|
|
|
|
include/WiiSaveWriter.hpp \
|
|
|
|
include/aes.h \
|
|
|
|
include/bn.h \
|
|
|
|
include/ec.h \
|
|
|
|
include/md5.h \
|
2013-02-16 18:28:30 +00:00
|
|
|
include/sha1.h \
|
|
|
|
include/ALTTPStructs.hpp \
|
|
|
|
include/ALTTPQuest.hpp \
|
|
|
|
include/ALTTPFileWriter.hpp \
|
|
|
|
include/ALTTPFileReader.hpp \
|
|
|
|
include/ALTTPFile.hpp \
|
2013-07-21 03:57:20 +00:00
|
|
|
include/ALTTPEnums.hpp \
|
|
|
|
include/MCFileReader.hpp \
|
|
|
|
include/MCFile.hpp \
|
|
|
|
include/MCFileWriter.hpp \
|
|
|
|
include/ZQuestFileWriter.hpp \
|
|
|
|
include/ZQuestFileReader.hpp \
|
2013-07-21 07:49:07 +00:00
|
|
|
include/Compression.hpp \
|
2013-07-22 03:06:54 +00:00
|
|
|
include/WiiImage.hpp \
|
|
|
|
include/ZQuestFile.hpp
|
2013-01-29 05:09:25 +00:00
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
src/utility.cpp \
|
|
|
|
src/TextStream.cpp \
|
|
|
|
src/Stream.cpp \
|
|
|
|
src/BinaryWriter.cpp \
|
2013-02-16 04:22:16 +00:00
|
|
|
src/BinaryReader.cpp \
|
|
|
|
src/WiiBanner.cpp \
|
|
|
|
src/WiiFile.cpp \
|
|
|
|
src/WiiSave.cpp \
|
|
|
|
src/WiiSaveReader.cpp \
|
|
|
|
src/WiiSaveWriter.cpp \
|
|
|
|
src/aes.c \
|
|
|
|
src/bn.cpp \
|
|
|
|
src/ec.cpp \
|
|
|
|
src/md5.c \
|
2013-02-16 18:28:30 +00:00
|
|
|
src/sha1.cpp \
|
|
|
|
src/ALTTPQuest.cpp \
|
|
|
|
src/ALTTPFileWriter.cpp \
|
|
|
|
src/ALTTPFileReader.cpp \
|
2013-07-21 03:57:20 +00:00
|
|
|
src/ALTTPFile.cpp \
|
|
|
|
src/MCFileReader.cpp \
|
|
|
|
src/MCFile.cpp \
|
|
|
|
src/MCFileWriter.cpp \
|
|
|
|
src/ZQuestFileWriter.cpp \
|
|
|
|
src/ZQuestFileReader.cpp \
|
2013-07-21 07:49:07 +00:00
|
|
|
src/Compression.cpp \
|
2013-07-22 03:06:54 +00:00
|
|
|
src/WiiImage.cpp \
|
|
|
|
src/ZQuestFile.cpp
|
2013-01-29 05:09:25 +00:00
|
|
|
|
2013-01-29 21:46:05 +00:00
|
|
|
system("exec doxygen libzelda.conf")
|
2013-07-21 03:57:20 +00:00
|
|
|
#system("cd doc/latex && make")
|
2013-01-29 21:46:05 +00:00
|
|
|
system("cd ../../")
|