incrementally closer to buildable system

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/personal/carm/represet@1180 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2008-09-20 19:21:36 +00:00
parent da6dd94653
commit 71ce48bdcb
4 changed files with 10 additions and 20 deletions

View File

@ -12,11 +12,11 @@
#include "PresetFactoryManager.hpp"
#ifndef DISABLE_MILKDROP_PRESETS
#include "MilkdropPresetFactory.hpp"
#include "MilkdropPresetFactory/MilkdropPresetFactory.hpp"
#endif
#ifndef DISABLE_COMPILED_PRESETS
#include "NativePresetFactory.hpp"
#ifndef DISABLE_NATIVE_PRESETS
#include "NativePresetFactory/NativePresetFactory.hpp"
#endif
#include <sstream>
@ -37,8 +37,8 @@ void PresetFactoryManager::initialize(int gx, int gy) {
factory = new MilkdropPresetFactory(_gx, _gy);
registerFactory(factory->supportedExtensions(), factory);
#endif
#ifndef DISABLE_COMPILED_PRESETS
#ifndef DISABLE_NATIVE_PRESETS
factory = new NativePresetFactory();
registerFactory(factory->supportedExtensions(), factory);
#endif