diff options
Diffstat (limited to 'cpp/config/ice.cpp.props')
-rw-r--r-- | cpp/config/ice.cpp.props | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/cpp/config/ice.cpp.props b/cpp/config/ice.cpp.props index b89f0e448e4..7e5f5970a1e 100644 --- a/cpp/config/ice.cpp.props +++ b/cpp/config/ice.cpp.props @@ -27,9 +27,14 @@ <!-- Source distributions library, binary and include paths --> <PropertyGroup Condition="Exists('$(IceSourceHome)')"> - <IceToolsBin>$(IceHome)\cpp\bin\$(Ice_Platform)\$(Ice_Configuration)</IceToolsBin> - <Path>$(IceHome)\cpp\bin\$(Platform)$(Ice_Configuration);%(IceToolsBin);%(Path)</Path> - <LibraryPath>$(IceHome)\cpp\lib\$(Ice_Platform)\$(Ice_Configuration);$(LibraryPath)</LibraryPath> - <IncludePath>$(IceHome)\cpp\include;$(IceHome)\cpp\include\generated\$(Ice_CppMapping)\$(Platform)\$(Ice_Configuration);$(IncludePath)</IncludePath> + <IceBinPath>$(IceHome)\cpp\bin\$(Platform)\$(Ice_Configuration)</IceBinPath> + <IceLibraryPath>$(IceHome)\cpp\lib\$(Ice_Platform)\$(Ice_Configuration)</IceLibraryPath> + <IceIncludePath>$(IceHome)\cpp\include;$(IceHome)\cpp\include\generated\$(Ice_CppMapping)\$(Platform)\$(Ice_Configuration)</IceIncludePath> + + <IceToolsPath>$(IceBinPath)</IceToolsPath> + <Path>$(IceBinPath);$(Path)</Path> + <LibraryPath>$(IceLibraryPath);$(LibraryPath)</LibraryPath> + <IncludePath>$(IceIncludePath);$(IncludePath)</IncludePath> + </PropertyGroup> </Project> |