|
From: Tapio V. <aa...@us...> - 2010-08-23 17:40:51
|
Module: performous Branch: master Commit: 494aaf3cc55ea4dfe1907f316850c628c25932ee Author: Tapio Vierros <tap...@gm...> Date: Mon Aug 23 20:39:08 2010 +0300 Add a batch script to make song folder config easier for Windows users. Until we have a proper GUI. --- CMakeLists.txt | 1 + win32/ConfigureSongDirectory.bat | 9 +++++++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c887394..26b1d48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,4 +72,5 @@ endif (ENABLE_TOOLS) if(WIN32) option(ENABLE_VERSIONING "Add number version information. This allows to add version information to exe. Be carefull, in beta (and a lot useless)" OFF) + install(FILES win32/ConfigureSongDirectory.bat DESTINATION bin) endif(WIN32) diff --git a/win32/ConfigureSongDirectory.bat b/win32/ConfigureSongDirectory.bat new file mode 100755 index 0000000..7008a2d --- /dev/null +++ b/win32/ConfigureSongDirectory.bat @@ -0,0 +1,9 @@ +@echo off +set /p songdir=Enter the path to your song dir: + +echo Performous will now launch. +echo Go to the song browser and verify you typed the path correctly. +echo Then go to configuration menu and hit Ctrl+S to save the setting. +pause + +performous.exe %songdir% |