82 lines
1.7 KiB
Prolog
82 lines
1.7 KiB
Prolog
#
|
|
# Kangaroo Punch Multi Player Game Server Mark II
|
|
# Copyright (C) 2020-2021 Scott Duensing
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
TEMPLATE = app
|
|
CONFIG -= qt
|
|
|
|
DESTDIR = $$OUT_PWD/bin
|
|
|
|
DOS_HEADERS =
|
|
|
|
DOS_SOURCES = \
|
|
src/dos/mouse.c \
|
|
src/dos/vesa.c
|
|
|
|
LINUX_INCLUDES = \
|
|
$$PWD/src/linux
|
|
|
|
LINUX_HEADERS =
|
|
|
|
LINUX_SOURCES = \
|
|
src/linux/linux.c
|
|
|
|
INCLUDEPATH += \
|
|
$$LINUX_INCLUDES \
|
|
$$PWD/src \
|
|
$$PWD/src/gui \
|
|
$$PWD/src/thirdparty
|
|
|
|
HEADERS = \
|
|
$$LINUX_HEADERS \
|
|
src/thirdparty/stb_ds.h \
|
|
src/thirdparty/stb_leakcheck.h \
|
|
src/thirdparty/stb_image.h \
|
|
src/gui/array.h \
|
|
src/gui/font.h \
|
|
src/gui/desktop.h \
|
|
src/gui/gui.h \
|
|
src/gui/widget.h \
|
|
src/gui/window.h \
|
|
src/gui/log.h \
|
|
src/gui/memory.h \
|
|
src/gui/mouse.h \
|
|
src/gui/vesa.h \
|
|
src/gui/image.h \
|
|
src/gui/os.h
|
|
|
|
SOURCES = \
|
|
$$LINUX_SOURCES \
|
|
src/gui/array.c \
|
|
src/gui/font.c \
|
|
src/gui/desktop.c \
|
|
src/gui/gui.c \
|
|
src/gui/widget.c \
|
|
src/gui/window.c \
|
|
src/gui/image.c \
|
|
src/gui/log.c \
|
|
src/gui/memory.c \
|
|
src/main.c
|
|
|
|
LIBS = \
|
|
-lSDL2
|
|
|
|
OTHER_FILES = \
|
|
Makefile.djgpp \
|
|
$$DOS_HEADERS \
|
|
$$DOS_SOURCES \
|
|
build.sh
|