diff options
author | 2016-03-19 14:47:10 +0100 | |
---|---|---|
committer | 2016-03-19 16:09:34 +0100 | |
commit | 65906009904604247c3b0a5d09afdc1ba7432a43 (patch) | |
tree | 69e21581cf60a2e25110fea2da6532c7697e41bf /scripts/genie.lua | |
parent | d2fe9e454bac716fb5f61ae2cbc2f776ed9daedb (diff) |
Added support for Raspberry Pi cross-compile (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 0a7c79d5825..ff6872a5f36 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -114,6 +114,7 @@ newoption { { "haiku", "Haiku" }, { "solaris", "Solaris SunOS" }, { "steamlink", "Steam Link" }, + { "rpi", "Raspberry Pi" }, }, } @@ -1098,7 +1099,7 @@ configuration { "pnacl" } } archivesplit_size "20" -configuration { "linux-*" } +configuration { "linux-* or rpi"} links { "dl", "rt", @@ -1123,6 +1124,12 @@ configuration { "steamlink" } "EGL_API_FB", } +configuration { "rpi" } + links { + "SDL2", + "fontconfig", + } + configuration { "osx* or xcode4" } links { "pthread", |