mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-26 13:47:12 +01:00
Rename a file. Also fix naming frt's executable.
This commit is contained in:
parent
dcd8a15cdb
commit
945f1c5116
@ -1,10 +1,10 @@
|
||||
all:
|
||||
@echo
|
||||
@echo FRT is not meant to be compiled stand alone out of the box.
|
||||
@echo You need to put it in the \"platform\" directory of godot and use
|
||||
@echo You need to put it in the \"platform\" directory of pandemonium and use
|
||||
@echo scons as usual.
|
||||
@echo
|
||||
@echo For example, from the main top level godot directory, type:
|
||||
@echo For example, from the main top level pandemonium directory, type:
|
||||
@echo
|
||||
@echo " " scons platform=frt target=release tools=no frt_arch=pi3
|
||||
@echo
|
||||
|
@ -25,4 +25,4 @@ if os.path.isfile('/opt/vc/include/bcm_host.h'):
|
||||
if os.path.isfile('/usr/include/libdrm/drm.h'):
|
||||
frt_env.Append(CCFLAGS=["-I/usr/include/libdrm"])
|
||||
|
||||
frt_env.Program('#bin/godot', ['godot_frt.cpp', 'os_frt.cpp', 'frt_options.cpp'] + env['FRT_MODULES'])
|
||||
frt_env.Program('#bin/pandemonium', ['pandemonium_frt.cpp', 'os_frt.cpp', 'frt_options.cpp'] + env['FRT_MODULES'])
|
||||
|
@ -85,7 +85,7 @@ void show_param_list() {
|
||||
|
||||
void usage(const char *program_name, int code = 1) {
|
||||
printf("\n"
|
||||
"usage: %s [godot args] [--frt [options] [param=value...]]\n"
|
||||
"usage: %s [pandemonium args] [--frt [options] [param=value...]]\n"
|
||||
"\n"
|
||||
"options:\n"
|
||||
" -v show version and exit\n"
|
||||
|
@ -32,7 +32,7 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
// imported from godot (core/os/keyboard.h), adding prefixes to avoid
|
||||
// imported from pandemonium (core/os/keyboard.h), adding prefixes to avoid
|
||||
// clashes with the linux input api
|
||||
|
||||
enum { GD_SPKEY = (1 << 24) };
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*************************************************************************/
|
||||
/* godot_frt.cpp */
|
||||
/* pandemonium_frt.cpp */
|
||||
/*************************************************************************/
|
||||
/* This file is part of: */
|
||||
/* PANDEMONIUM ENGINE */
|
||||
@ -29,7 +29,7 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
// godot_frt.cpp
|
||||
// pandemonium_frt.cpp
|
||||
/*
|
||||
* FRT - A Godot platform targeting single board computers
|
||||
* Copyright (c) 2017-2019 Emanuele Fornara
|
@ -41,7 +41,7 @@ release() {
|
||||
local bin
|
||||
[ -d releases ] || return
|
||||
bin=releases/frt_${fver}_${tag}_${arch}.bin
|
||||
cp tag_$tag/bin/godot.frt.opt$extrasuffix.$arch $bin
|
||||
cp tag_$tag/bin/pandemonium.frt.opt$extrasuffix.$arch $bin
|
||||
$stripcmd $bin
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user