2012-12-16 15:06:14 +00:00
|
|
|
QT -= gui
|
|
|
|
TARGET = Core
|
|
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += staticlib
|
|
|
|
|
2013-11-21 18:07:18 +00:00
|
|
|
include(Settings.pri)
|
2013-03-02 20:03:06 +00:00
|
|
|
|
2014-06-14 17:43:06 +00:00
|
|
|
INCLUDEPATH += $$P/ $$P/native $$P/Core/MIPS $$P/ext/xbrz
|
2012-12-16 15:06:14 +00:00
|
|
|
|
2012-12-23 07:46:44 +00:00
|
|
|
arm {
|
2013-11-21 18:07:18 +00:00
|
|
|
SOURCES += $$P/Core/MIPS/ARM/*.cpp \ #CoreARM
|
|
|
|
$$P/ext/disarm.cpp
|
|
|
|
HEADERS += $$P/Core/MIPS/ARM/*.h
|
2012-12-23 07:46:44 +00:00
|
|
|
}
|
2014-06-10 06:05:32 +00:00
|
|
|
else {
|
2013-11-21 18:07:18 +00:00
|
|
|
SOURCES += $$P/Core/MIPS/x86/*.cpp
|
|
|
|
HEADERS += $$P/Core/MIPS/x86/*.h
|
2012-12-16 15:06:14 +00:00
|
|
|
}
|
2012-12-23 07:46:44 +00:00
|
|
|
|
2013-11-21 18:07:18 +00:00
|
|
|
SOURCES += $$P/Core/*.cpp \ # Core
|
|
|
|
$$P/Core/Debugger/*.cpp \
|
|
|
|
$$P/Core/Dialog/*.cpp \
|
|
|
|
$$P/Core/ELF/*.cpp \
|
|
|
|
$$P/Core/FileSystems/*.cpp \
|
|
|
|
$$P/Core/Font/*.cpp \
|
|
|
|
$$P/Core/HLE/*.cpp \
|
|
|
|
$$P/Core/HW/*.cpp \
|
|
|
|
$$P/Core/MIPS/*.cpp \
|
|
|
|
$$P/Core/MIPS/JitCommon/*.cpp \
|
|
|
|
$$P/Core/Util/*.cpp \
|
2014-06-14 17:43:06 +00:00
|
|
|
$$P/ext/libkirk/*.c # Kirk
|
2013-11-03 03:54:04 +00:00
|
|
|
|
2013-11-21 18:07:18 +00:00
|
|
|
HEADERS += $$P/Core/*.h \
|
|
|
|
$$P/Core/Debugger/*.h \
|
|
|
|
$$P/Core/Dialog/*.h \
|
|
|
|
$$P/Core/ELF/*.h \
|
|
|
|
$$P/Core/FileSystems/*.h \
|
|
|
|
$$P/Core/Font/*.h \
|
|
|
|
$$P/Core/HLE/*.h \
|
|
|
|
$$P/Core/HW/*.h \
|
|
|
|
$$P/Core/MIPS/*.h \
|
|
|
|
$$P/Core/MIPS/JitCommon/*.h \
|
|
|
|
$$P/Core/Util/*.h \
|
2014-06-14 17:43:06 +00:00
|
|
|
$$P/ext/libkirk/*.h
|
2013-01-31 16:25:11 +00:00
|
|
|
|
2013-12-06 04:00:17 +00:00
|
|
|
win32: INCLUDEPATH += $$P/ffmpeg/WindowsInclude
|