From 1cfa474ca9cdda9e8ed61e00ae42260a4c1dbfc0 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 16 Feb 2018 21:25:31 +0100 Subject: [PATCH] [Plugins] Moved example_plugin into the plugins folder --- .travis.yml | 2 -- {example_plugin => plugins/example_plugin}/Makefile | 0 {example_plugin => plugins/example_plugin}/src/main.cpp | 0 3 files changed, 2 deletions(-) rename {example_plugin => plugins/example_plugin}/Makefile (100%) rename {example_plugin => plugins/example_plugin}/src/main.cpp (100%) diff --git a/.travis.yml b/.travis.yml index b4e70d1..73157b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,7 +54,6 @@ install: script: - make - (cd loader && make) -- (cd example_plugin && make) - (cd plugins && make) before_deploy: @@ -64,7 +63,6 @@ before_deploy: - chmod +x gitrev.sh - versiontag="$(./gitrev.sh)" - (cd loader && make) -- cp example_plugin/example_plugin.mod wiiu/plugins - find plugins -type f -name "*.mod" | xargs -i cp {} wiiu/plugins - cp loader/meta/* wiiu/apps/wiiupluginloader - cp loader/wiiupluginloader.elf wiiu/apps/wiiupluginloader diff --git a/example_plugin/Makefile b/plugins/example_plugin/Makefile similarity index 100% rename from example_plugin/Makefile rename to plugins/example_plugin/Makefile diff --git a/example_plugin/src/main.cpp b/plugins/example_plugin/src/main.cpp similarity index 100% rename from example_plugin/src/main.cpp rename to plugins/example_plugin/src/main.cpp