Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox-main.vcproj.user.in @ 8368

Last change on this file since 8368 was 8368, checked in by rgrieder, 13 years ago

Added CMake configuration type "RelForDevs", which replaces "RelWithDebInfo". That latter is now equivalent to "Release", but with symbols.
Also, I removed debug symbol generation for Release and MinSizeRel when compiling with MSVC.

The new configuration should be used as standard Release mode when developing. The other three release configurations are for actual installed binaries (and behave again as the name suggests).

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="Windows-1252"?>
2<VisualStudioUserFile
3        ProjectType="Visual C++"
4        Version="${VISUAL_STUDIO_VERSION_SIMPLE}.00"
5        ShowAllFiles="false"
6        >
7        <Configurations>
8                <Configuration
9                        Name="Debug|${MSVC_PLATFORM}"
10                        >
11                        <DebugSettings
12                                WorkingDirectory="${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$(OutDir)"
13                                Environment="PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%"
14                                EnvironmentMerge="true"
15                        />
16                </Configuration>
17                <Configuration
18                        Name="RelForDevs|${MSVC_PLATFORM}"
19                        >
20                        <DebugSettings
21                                WorkingDirectory="${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$(OutDir)"
22                                Environment="PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%"
23                                EnvironmentMerge="true"
24                        />
25                </Configuration>
26                <Configuration
27                        Name="Release|${MSVC_PLATFORM}"
28                        >
29                        <DebugSettings
30                                WorkingDirectory="${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$(OutDir)"
31                                Environment="PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%"
32                                EnvironmentMerge="true"
33                        />
34                </Configuration>
35                <Configuration
36                        Name="MinSizeRel|${MSVC_PLATFORM}"
37                        >
38                        <DebugSettings
39                                WorkingDirectory="${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$(OutDir)"
40                                Environment="PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%"
41                                EnvironmentMerge="true"
42                        />
43                </Configuration>
44                <Configuration
45                        Name="RelWithDebInfo|${MSVC_PLATFORM}"
46                        >
47                        <DebugSettings
48                                WorkingDirectory="${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$(OutDir)"
49                                Environment="PATH=${RUNTIME_LIBRARY_DIRECTORY};%PATH%"
50                                EnvironmentMerge="true"
51                        />
52                </Configuration>
53        </Configurations>
54</VisualStudioUserFile>
Note: See TracBrowser for help on using the repository browser.