aboutsummaryrefslogtreecommitdiff
path: root/tools/create_msvc/create_msvc.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/create_msvc/create_msvc.h')
-rw-r--r--tools/create_msvc/create_msvc.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/create_msvc/create_msvc.h b/tools/create_msvc/create_msvc.h
index 1d518b2433..355eba1d78 100644
--- a/tools/create_msvc/create_msvc.h
+++ b/tools/create_msvc/create_msvc.h
@@ -171,13 +171,14 @@ StringList getFeatureLibraries(const FeatureList &features);
* It also contains the path to the ScummVM souce root.
*/
struct BuildSetup {
- std::string srcDir; ///< Path to the ScummVM sources
+ std::string srcDir; ///< Path to the ScummVM sources.
+ std::string filePrefix; ///< Prefix for the relativ path arugments in the project files.
- EngineDescList engines; ///< Engine list for the build (this may contain engines, which are *not* enabled!)
- FeatureList features; ///< Feature list for the build (this may contain features, which are *not* enabled!)
+ EngineDescList engines; ///< Engine list for the build (this may contain engines, which are *not* enabled!).
+ FeatureList features; ///< Feature list for the build (this may contain features, which are *not* enabled!).
- StringList defines; ///< List of all defines for the build
- StringList libraries; ///< List of all external libraries required for the build
+ StringList defines; ///< List of all defines for the build.
+ StringList libraries; ///< List of all external libraries required for the build.
};
/**