athena/AthenaCore.pri

69 lines
2.1 KiB
Plaintext
Raw Normal View History

2015-01-24 20:29:08 -08:00
!contains(ATHENA_PRO, true): {
2015-01-24 19:40:35 -08:00
INCLUDEPATH += $$PWD/include
2015-04-13 20:10:10 -07:00
!contains(CONFIG, c++11):CONFIG += c++11
2015-04-04 17:35:32 -07:00
mac:QMAKE_CXXFLAGS += -stdlib=libc++
2015-01-24 19:40:35 -08:00
}
2015-04-11 23:22:03 -07:00
include(extern/lzo/lzo.pri)
2015-04-13 20:10:10 -07:00
include(extern/zlib/zlib.pri)
2015-04-11 23:22:03 -07:00
2015-01-24 20:29:08 -08:00
ATHENA_CORE=true
2015-01-24 19:40:35 -08:00
SOURCES += \
$$PWD/src/Athena/Utility.cpp \
$$PWD/src/Athena/FileReader.cpp \
$$PWD/src/Athena/FileWriter.cpp \
2015-03-01 12:42:39 -08:00
$$PWD/src/Athena/MemoryReader.cpp \
$$PWD/src/Athena/MemoryWriter.cpp \
2015-01-24 19:40:35 -08:00
$$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
2015-01-24 19:40:35 -08:00
2015-04-04 17:35:32 -07:00
win32:SOURCES += \
$$PWD/src/win32_largefilewrapper.c
mac:SOURCES += \
$$PWD/src/osx_largefilewrapper.c
2015-01-24 19:40:35 -08:00
HEADERS += \
2015-03-01 12:42:39 -08:00
$$PWD/include/Athena/IStream.hpp \
$$PWD/include/Athena/IStreamReader.hpp \
$$PWD/include/Athena/IStreamWriter.hpp \
2015-01-24 19:40:35 -08:00
$$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 \
2015-03-01 12:42:39 -08:00
$$PWD/include/Athena/MemoryReader.hpp \
$$PWD/include/Athena/MemoryWriter.hpp \
2015-01-24 19:40:35 -08:00
$$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 \
2015-06-14 19:49:02 -07:00
$$PWD/include/gekko_support.h \
$$PWD/include/Athena/DNA.hpp
2015-01-24 19:40:35 -08:00
win32:HEADERS += \
$$PWD/include/win32_largefilewrapper.h
2015-04-04 17:35:32 -07:00
mac:HEADERS += \
$$PWD/include/osx_largefilewrapper.h