mirror of https://github.com/libAthena/athena.git
* Added libzelda.pro for new build system
This commit is contained in:
parent
5392d21653
commit
8adb9c0e98
|
@ -0,0 +1,30 @@
|
|||
CONFIG += staticlib
|
||||
TEMPLATE=lib
|
||||
TARGET=zelda
|
||||
QMAKE_CXXFLAGS = -std=c++11
|
||||
INCLUDEPATH += include
|
||||
|
||||
HEADERS += \
|
||||
include/utility.hpp \
|
||||
include/utf8.h \
|
||||
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 \
|
||||
include/utf8/unchecked.h \
|
||||
include/utf8/core.h \
|
||||
include/utf8/checked.h
|
||||
|
||||
SOURCES += \
|
||||
src/utility.cpp \
|
||||
src/TextStream.cpp \
|
||||
src/Stream.cpp \
|
||||
src/BinaryWriter.cpp \
|
||||
src/BinaryReader.cpp
|
||||
|
Loading…
Reference in New Issue