mirror of https://github.com/libAthena/athena.git
removed qt files
This commit is contained in:
parent
e45679ffba
commit
f874dfff31
|
@ -1,4 +0,0 @@
|
||||||
include(AthenaCore.pri)
|
|
||||||
include(AthenaZelda.pri)
|
|
||||||
include(AthenaWiiSave.pri)
|
|
||||||
include(AthenaSakura.pri)
|
|
62
Athena.pro
62
Athena.pro
|
@ -1,62 +0,0 @@
|
||||||
CONFIG += staticlib c++11
|
|
||||||
QMAKE_CXXFLAGS += -std=c++11
|
|
||||||
TEMPLATE= lib
|
|
||||||
DESTDIR = ./lib
|
|
||||||
INCLUDEPATH += $$PWD/include
|
|
||||||
|
|
||||||
# Uncomment this if you wish to use Qt with libAthena
|
|
||||||
#DEFINES += ATHENA_USE_QT
|
|
||||||
|
|
||||||
contains(DEFINES, ATHENA_USE_QT){
|
|
||||||
QT += qt core
|
|
||||||
} else {
|
|
||||||
QT =
|
|
||||||
}
|
|
||||||
|
|
||||||
CONFIG(debug, debug|release): {
|
|
||||||
DEFINES += DEBUG
|
|
||||||
TARGET=Athena-d
|
|
||||||
# We don't want the objects,
|
|
||||||
# in the project directory, so tell qmake
|
|
||||||
# where to put them
|
|
||||||
OBJECTS_DIR = obj/debug
|
|
||||||
}
|
|
||||||
|
|
||||||
CONFIG(release, release|debug): {
|
|
||||||
DEFINES -= DEBUG
|
|
||||||
TARGET=Athena
|
|
||||||
# We don't want the objects,
|
|
||||||
# in the project directory, so tell qmake
|
|
||||||
# where to put them
|
|
||||||
OBJECTS_DIR = obj/release
|
|
||||||
}
|
|
||||||
|
|
||||||
ATHENA_PRO=true
|
|
||||||
|
|
||||||
include(Athena.pri)
|
|
||||||
|
|
||||||
|
|
||||||
unix {
|
|
||||||
isEmpty(PREFIX) {
|
|
||||||
PREFIX = /usr/local
|
|
||||||
}
|
|
||||||
libFiles.path = $$PREFIX/lib
|
|
||||||
libFiles.files = $$PWD/lib/*
|
|
||||||
headerFiles.files = $$PWD/include/*
|
|
||||||
headerFiles.path = $$PREFIX/include/Athena
|
|
||||||
INSTALLS += libFiles headerFiles
|
|
||||||
}
|
|
||||||
|
|
||||||
win32 {
|
|
||||||
isEmpty(PREFIX) {
|
|
||||||
PREFIX = $$PWD/pkg
|
|
||||||
}
|
|
||||||
|
|
||||||
libFiles.path = $$PREFIX/lib
|
|
||||||
libFiles.files = $$PWD/lib/*
|
|
||||||
headerFiles.path = $$PREFIX/include/Athena
|
|
||||||
headerFiles.files = $$PWD/include/*
|
|
||||||
INSTALLS += libFiles headerFiles
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -1,68 +0,0 @@
|
||||||
!contains(ATHENA_PRO, true): {
|
|
||||||
INCLUDEPATH += $$PWD/include
|
|
||||||
!contains(CONFIG, c++11):CONFIG += c++11
|
|
||||||
mac:QMAKE_CXXFLAGS += -stdlib=libc++
|
|
||||||
}
|
|
||||||
|
|
||||||
include(extern/lzo/lzo.pri)
|
|
||||||
include(extern/zlib/zlib.pri)
|
|
||||||
|
|
||||||
ATHENA_CORE=true
|
|
||||||
|
|
||||||
SOURCES += \
|
|
||||||
$$PWD/src/Athena/Utility.cpp \
|
|
||||||
$$PWD/src/Athena/FileReader.cpp \
|
|
||||||
$$PWD/src/Athena/FileWriter.cpp \
|
|
||||||
$$PWD/src/Athena/MemoryReader.cpp \
|
|
||||||
$$PWD/src/Athena/MemoryWriter.cpp \
|
|
||||||
$$PWD/src/Athena/Global.cpp \
|
|
||||||
$$PWD/src/Athena/Checksums.cpp \
|
|
||||||
$$PWD/src/Athena/Compression.cpp \
|
|
||||||
$$PWD/src/LZ77/LZLookupTable.cpp \
|
|
||||||
$$PWD/src/LZ77/LZType10.cpp \
|
|
||||||
$$PWD/src/LZ77/LZType11.cpp \
|
|
||||||
$$PWD/src/LZ77/LZBase.cpp \
|
|
||||||
$$PWD/src/Athena/FileInfo.cpp \
|
|
||||||
$$PWD/src/Athena/Dir.cpp \
|
|
||||||
$$PWD/src/gekko_support.c
|
|
||||||
|
|
||||||
win32:SOURCES += \
|
|
||||||
$$PWD/src/win32_largefilewrapper.c
|
|
||||||
|
|
||||||
mac:SOURCES += \
|
|
||||||
$$PWD/src/osx_largefilewrapper.c
|
|
||||||
|
|
||||||
|
|
||||||
HEADERS += \
|
|
||||||
$$PWD/include/Athena/IStream.hpp \
|
|
||||||
$$PWD/include/Athena/IStreamReader.hpp \
|
|
||||||
$$PWD/include/Athena/IStreamWriter.hpp \
|
|
||||||
$$PWD/include/Athena/Types.hpp \
|
|
||||||
$$PWD/include/Athena/Utility.hpp \
|
|
||||||
$$PWD/include/Athena/Global.hpp \
|
|
||||||
$$PWD/include/Athena/Exception.hpp \
|
|
||||||
$$PWD/include/Athena/FileNotFoundException.hpp \
|
|
||||||
$$PWD/include/Athena/IOException.hpp \
|
|
||||||
$$PWD/include/Athena/InvalidDataException.hpp \
|
|
||||||
$$PWD/include/Athena/InvalidOperationException.hpp \
|
|
||||||
$$PWD/include/Athena/FileReader.hpp \
|
|
||||||
$$PWD/include/Athena/FileWriter.hpp \
|
|
||||||
$$PWD/include/Athena/MemoryReader.hpp \
|
|
||||||
$$PWD/include/Athena/MemoryWriter.hpp \
|
|
||||||
$$PWD/include/Athena/NotImplementedException.hpp \
|
|
||||||
$$PWD/include/Athena/Checksums.hpp \
|
|
||||||
$$PWD/include/Athena/Compression.hpp \
|
|
||||||
$$PWD/include/LZ77/LZBase.hpp \
|
|
||||||
$$PWD/include/LZ77/LZLookupTable.hpp \
|
|
||||||
$$PWD/include/LZ77/LZType10.hpp \
|
|
||||||
$$PWD/include/LZ77/LZType11.hpp \
|
|
||||||
$$PWD/include/Athena/FileInfo.hpp \
|
|
||||||
$$PWD/include/Athena/Dir.hpp \
|
|
||||||
$$PWD/include/gekko_support.h \
|
|
||||||
$$PWD/include/Athena/DNA.hpp
|
|
||||||
|
|
||||||
win32:HEADERS += \
|
|
||||||
$$PWD/include/win32_largefilewrapper.h
|
|
||||||
|
|
||||||
mac:HEADERS += \
|
|
||||||
$$PWD/include/osx_largefilewrapper.h
|
|
|
@ -1,20 +0,0 @@
|
||||||
!contains(ATHENA_CORE, true): {
|
|
||||||
message("including core")
|
|
||||||
include(AthenaCore.pri)
|
|
||||||
}
|
|
||||||
|
|
||||||
SOURCES += \
|
|
||||||
$$PWD/src/Athena/Sprite.cpp \
|
|
||||||
$$PWD/src/Athena/SpriteFile.cpp \
|
|
||||||
$$PWD/src/Athena/SpriteFileReader.cpp \
|
|
||||||
$$PWD/src/Athena/SpriteFileWriter.cpp \
|
|
||||||
$$PWD/src/Athena/SpriteFrame.cpp \
|
|
||||||
$$PWD/src/Athena/SpritePart.cpp
|
|
||||||
|
|
||||||
HEADERS += \
|
|
||||||
$$PWD/include/Athena/Sprite.hpp \
|
|
||||||
$$PWD/include/Athena/SpriteFile.hpp \
|
|
||||||
$$PWD/include/Athena/SpriteFileReader.hpp \
|
|
||||||
$$PWD/include/Athena/SpriteFileWriter.hpp \
|
|
||||||
$$PWD/include/Athena/SpriteFrame.hpp \
|
|
||||||
$$PWD/include/Athena/SpritePart.hpp
|
|
|
@ -1,30 +0,0 @@
|
||||||
!contains(ATHENA_CORE, true): {
|
|
||||||
message("including core")
|
|
||||||
include(AthenaCore.pri)
|
|
||||||
}
|
|
||||||
|
|
||||||
SOURCES += \
|
|
||||||
$$PWD/src/Athena/WiiBanner.cpp \
|
|
||||||
$$PWD/src/Athena/WiiFile.cpp \
|
|
||||||
$$PWD/src/Athena/WiiImage.cpp \
|
|
||||||
$$PWD/src/Athena/WiiSave.cpp \
|
|
||||||
$$PWD/src/Athena/WiiSaveReader.cpp \
|
|
||||||
$$PWD/src/Athena/WiiSaveWriter.cpp \
|
|
||||||
$$PWD/src/bn.cpp \
|
|
||||||
$$PWD/src/ec.cpp \
|
|
||||||
$$PWD/src/md5.cpp \
|
|
||||||
$$PWD/src/sha1.cpp \
|
|
||||||
$$PWD/src/aes.cpp
|
|
||||||
|
|
||||||
HEADERS += \
|
|
||||||
$$PWD/include/Athena/WiiBanner.hpp \
|
|
||||||
$$PWD/include/Athena/WiiFile.hpp \
|
|
||||||
$$PWD/include/Athena/WiiImage.hpp \
|
|
||||||
$$PWD/include/Athena/WiiSave.hpp \
|
|
||||||
$$PWD/include/Athena/WiiSaveReader.hpp \
|
|
||||||
$$PWD/include/Athena/WiiSaveWriter.hpp \
|
|
||||||
$$PWD/include/aes.hpp \
|
|
||||||
$$PWD/include/bn.h \
|
|
||||||
$$PWD/include/ec.h \
|
|
||||||
$$PWD/include/md5.h \
|
|
||||||
$$PWD/include/sha1.h
|
|
|
@ -1,36 +0,0 @@
|
||||||
!contains(ATHENA_CORE, true): {
|
|
||||||
message("including core")
|
|
||||||
include(AthenaCore.pri)
|
|
||||||
}
|
|
||||||
|
|
||||||
SOURCES += \
|
|
||||||
$$PWD/src/Athena/ALTTPFile.cpp \
|
|
||||||
$$PWD/src/Athena/ALTTPFileReader.cpp \
|
|
||||||
$$PWD/src/Athena/ALTTPFileWriter.cpp \
|
|
||||||
$$PWD/src/Athena/ALTTPQuest.cpp \
|
|
||||||
$$PWD/src/Athena/MCFile.cpp \
|
|
||||||
$$PWD/src/Athena/MCFileReader.cpp \
|
|
||||||
$$PWD/src/Athena/MCFileWriter.cpp \
|
|
||||||
$$PWD/src/Athena/MCSlot.cpp \
|
|
||||||
$$PWD/src/Athena/SkywardSwordFile.cpp \
|
|
||||||
$$PWD/src/Athena/SkywardSwordFileReader.cpp \
|
|
||||||
$$PWD/src/Athena/SkywardSwordFileWriter.cpp \
|
|
||||||
$$PWD/src/Athena/SkywardSwordQuest.cpp \
|
|
||||||
$$PWD/src/Athena/ZQuestFile.cpp \
|
|
||||||
$$PWD/src/Athena/ZQuestFileReader.cpp \
|
|
||||||
$$PWD/src/Athena/ZQuestFileWriter.cpp
|
|
||||||
|
|
||||||
HEADERS += \
|
|
||||||
$$PWD/include/Athena/ALTTPEnums.hpp \
|
|
||||||
$$PWD/include/Athena/ALTTPFile.hpp \
|
|
||||||
$$PWD/include/Athena/ALTTPFileReader.hpp \
|
|
||||||
$$PWD/include/Athena/ALTTPFileWriter.hpp \
|
|
||||||
$$PWD/include/Athena/ALTTPQuest.hpp \
|
|
||||||
$$PWD/include/Athena/ALTTPStructs.hpp \
|
|
||||||
$$PWD/include/Athena/MCFile.hpp \
|
|
||||||
$$PWD/include/Athena/MCFileReader.hpp \
|
|
||||||
$$PWD/include/Athena/MCFileWriter.hpp \
|
|
||||||
$$PWD/include/Athena/SkywardSwordFile.hpp \
|
|
||||||
$$PWD/include/Athena/SkywardSwordFileReader.hpp \
|
|
||||||
$$PWD/include/Athena/SkywardSwordFileWriter.hpp \
|
|
||||||
$$PWD/include/Athena/SkywardSwordQuest.hpp
|
|
2
PKGBUILD
2
PKGBUILD
|
@ -1,7 +1,7 @@
|
||||||
# PKGBUILD for libAthena
|
# PKGBUILD for libAthena
|
||||||
_pkgname=libathena
|
_pkgname=libathena
|
||||||
pkgname=$_pkgname-git
|
pkgname=$_pkgname-git
|
||||||
pkgver=1.1.0.70.g1e55ce5
|
pkgver=1.1.0.71.ge45679f
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Basic cross platform IO library"
|
pkgdesc="Basic cross platform IO library"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
|
|
|
@ -1,78 +0,0 @@
|
||||||
SOURCES += \
|
|
||||||
$$PWD/src/lzo1.c \
|
|
||||||
$$PWD/src/lzo1_99.c \
|
|
||||||
$$PWD/src/lzo1a.c \
|
|
||||||
$$PWD/src/lzo1a_99.c \
|
|
||||||
$$PWD/src/lzo1b_1.c \
|
|
||||||
$$PWD/src/lzo1b_2.c \
|
|
||||||
$$PWD/src/lzo1b_3.c \
|
|
||||||
$$PWD/src/lzo1b_4.c \
|
|
||||||
$$PWD/src/lzo1b_5.c \
|
|
||||||
$$PWD/src/lzo1b_6.c \
|
|
||||||
$$PWD/src/lzo1b_7.c \
|
|
||||||
$$PWD/src/lzo1b_8.c \
|
|
||||||
$$PWD/src/lzo1b_9.c \
|
|
||||||
$$PWD/src/lzo1b_99.c \
|
|
||||||
$$PWD/src/lzo1b_9x.c \
|
|
||||||
$$PWD/src/lzo1b_cc.c \
|
|
||||||
$$PWD/src/lzo1b_d1.c \
|
|
||||||
$$PWD/src/lzo1b_d2.c \
|
|
||||||
$$PWD/src/lzo1b_rr.c \
|
|
||||||
$$PWD/src/lzo1b_xx.c \
|
|
||||||
$$PWD/src/lzo1c_1.c \
|
|
||||||
$$PWD/src/lzo1c_2.c \
|
|
||||||
$$PWD/src/lzo1c_3.c \
|
|
||||||
$$PWD/src/lzo1c_4.c \
|
|
||||||
$$PWD/src/lzo1c_5.c \
|
|
||||||
$$PWD/src/lzo1c_6.c \
|
|
||||||
$$PWD/src/lzo1c_7.c \
|
|
||||||
$$PWD/src/lzo1c_8.c \
|
|
||||||
$$PWD/src/lzo1c_9.c \
|
|
||||||
$$PWD/src/lzo1c_99.c \
|
|
||||||
$$PWD/src/lzo1c_9x.c \
|
|
||||||
$$PWD/src/lzo1c_cc.c \
|
|
||||||
$$PWD/src/lzo1c_d1.c \
|
|
||||||
$$PWD/src/lzo1c_d2.c \
|
|
||||||
$$PWD/src/lzo1c_rr.c \
|
|
||||||
$$PWD/src/lzo1c_xx.c \
|
|
||||||
$$PWD/src/lzo1f_1.c \
|
|
||||||
$$PWD/src/lzo1f_9x.c \
|
|
||||||
$$PWD/src/lzo1f_d1.c \
|
|
||||||
$$PWD/src/lzo1f_d2.c \
|
|
||||||
$$PWD/src/lzo1x_1.c \
|
|
||||||
$$PWD/src/lzo1x_1k.c \
|
|
||||||
$$PWD/src/lzo1x_1l.c \
|
|
||||||
$$PWD/src/lzo1x_1o.c \
|
|
||||||
$$PWD/src/lzo1x_9x.c \
|
|
||||||
$$PWD/src/lzo1x_d1.c \
|
|
||||||
$$PWD/src/lzo1x_d2.c \
|
|
||||||
$$PWD/src/lzo1x_d3.c \
|
|
||||||
$$PWD/src/lzo1x_o.c \
|
|
||||||
$$PWD/src/lzo1y_1.c \
|
|
||||||
$$PWD/src/lzo1y_9x.c \
|
|
||||||
$$PWD/src/lzo1y_d1.c \
|
|
||||||
$$PWD/src/lzo1y_d2.c \
|
|
||||||
$$PWD/src/lzo1y_d3.c \
|
|
||||||
$$PWD/src/lzo1y_o.c \
|
|
||||||
$$PWD/src/lzo1z_9x.c \
|
|
||||||
$$PWD/src/lzo1z_d1.c \
|
|
||||||
$$PWD/src/lzo1z_d2.c \
|
|
||||||
$$PWD/src/lzo1z_d3.c \
|
|
||||||
$$PWD/src/lzo2a_9x.c \
|
|
||||||
$$PWD/src/lzo2a_d1.c \
|
|
||||||
$$PWD/src/lzo2a_d2.c \
|
|
||||||
$$PWD/src/lzo_crc.c \
|
|
||||||
$$PWD/src/lzo_init.c \
|
|
||||||
$$PWD/src/lzo_ptr.c \
|
|
||||||
$$PWD/src/lzo_str.c \
|
|
||||||
$$PWD/src/lzo_util.c
|
|
||||||
|
|
||||||
HEADERS += \
|
|
||||||
$$PWD/include/lzo/lzo1.h \
|
|
||||||
$$PWD/include/lzo/lzo1x.h \
|
|
||||||
$$PWD/include/lzo/lzoconf.h \
|
|
||||||
$$PWD/include/lzo/lzodefs.h \
|
|
||||||
$$PWD/include/lzo/lzoutil.h
|
|
||||||
|
|
||||||
INCLUDEPATH += $$PWD/include
|
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
SOURCES += \
|
|
||||||
$$PWD/adler32.c \
|
|
||||||
$$PWD/compress.c \
|
|
||||||
$$PWD/crc32.c \
|
|
||||||
$$PWD/deflate.c \
|
|
||||||
$$PWD/infback.c \
|
|
||||||
$$PWD/inffast.c \
|
|
||||||
$$PWD/inflate.c \
|
|
||||||
$$PWD/inftrees.c \
|
|
||||||
$$PWD/trees.c \
|
|
||||||
$$PWD/uncompr.c \
|
|
||||||
$$PWD/zutil.c
|
|
||||||
|
|
||||||
HEADERS += \
|
|
||||||
$$PWD/crc32.h \
|
|
||||||
$$PWD/deflate.h \
|
|
||||||
$$PWD/gzguts.h \
|
|
||||||
$$PWD/inffast.h \
|
|
||||||
$$PWD/inffixed.h \
|
|
||||||
$$PWD/inflate.h \
|
|
||||||
$$PWD/inftrees.h \
|
|
||||||
$$PWD/trees.h \
|
|
||||||
$$PWD/zconf.h \
|
|
||||||
$$PWD/zlib.h \
|
|
||||||
$$PWD/zutil.h
|
|
||||||
|
|
||||||
INCLUDEPATH += $$PWD
|
|
|
@ -4,7 +4,7 @@ libdir=${prefix}/lib
|
||||||
|
|
||||||
Name: libAthena
|
Name: libAthena
|
||||||
Description: Basic cross platform IO library
|
Description: Basic cross platform IO library
|
||||||
Version: 1.0.0
|
Version: 2.0.0
|
||||||
Cflags: -I${includedir}/Athena -std=c++11
|
Cflags: -I${includedir}/Athena -std=c++11
|
||||||
Libs: -L${libdir} -lAthenaCore -lAthenaSakura -lAthenaZelda -lAthenaWiiSave
|
Libs: -L${libdir} -lAthenaCore -lAthenaSakura -lAthenaZelda -lAthenaWiiSave
|
||||||
Requires: zlib
|
Requires: zlib
|
||||||
|
|
Loading…
Reference in New Issue