1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
#**********************************************************
#* Default configuration file for OGDF
#*
#* - used by makeVCXProj.py
#* - for Visual Studio 2010 and later
#* (select YOUR version in [GENERAL]platformToolset!)
#*
#* Copy this file to makeVCXProj.config and adapt to your
#* system. Please consult the documentation for further
#* details:
#* http://www.ogdf.net/doku.php/tech:installvcc
#**********************************************************
[GENERAL]
#**********************************************************
#* Selects the Visual C++ compiler version
#*
#* v120 Visual C++ 2013
#* v110 Visual C++ 2012
#* v100 Visual C++ 2010
#* v90 Visual C++ 2008
#* Windows7.1SDK Visual C++ 2010 (Windows 7.1 SDK)
platformToolset = v100
#* Minimum Windows version required
#*
#* 0x0601 Windows 7
#* 0x0600 Windows Vista, Windows Server 2008
#* 0x0502 Windows XP SP2, Windows Server 2003 SP1
#* 0x0501 Windows XP, Windows Server 2003
#* 0x0500 Windows 2000
windowsVersion = 0x0502
#* Create a Visual Studio Solution file
createSolution = true
#* File name of solution file
solutionFile = ogdf.sln
[OGDF]
#**********************************************************
#* File name of OGDF project template file
templateFile = config/ogdf.vcxproj.template
#* File name of OGDF project filters template file
templateFiltersFile = config/ogdf.vcxproj.filters.template
#* File name of created OGDF project file
projectFile = ogdf.vcxproj
#* File name of created OGDF project filters file
projectFiltersFile = ogdf.vcxproj.filters
#* Create a static library (false) or DLL (true)?
DLL = false
#* Enable OpenMP Support for OGDF?
#* (Set to false for Visual Studio Express Editions!)
OpenMP = false
#* Sets the memory manager used by OGDF (leave blank for default)
#* Possible values
#* OGDF_MEMORY_POOL_TS
#* OGDF_MEMORY_POOL_NTS
#* OGDF_MEMORY_MALLOC_TS
memoryManager =
[COIN]
#**********************************************************
#* set to "true" to use COIN and ABACUS
useCoin = true
#* File name of COIN project template file
templateFile = config/coin.vcxproj.template
#* File name of COIN project filters template file
templateFiltersFile = config/coin.vcxproj.filters.template
#* File name of created COIN project file
projectFile = coin.vcxproj
#* File name of created COIN project filters file
projectFiltersFile = coin.vcxproj.filters
#* Enable OpenMP Support for COIN?
#* (Set to false for Visual Studio Express Editions!)
OpenMP = false
#==========================================================
#* Select your solvers for OGDF and ABACUS
#*
#* internal solvers (always available):
#* CLP: Coin's CLP solver
#* SYM: Coin's Symphony
#*
#* external solvers (must be installed)
#* CPX: IBM ILOG CPLEX
#* GRB: Gurobi Optimizer
#*
#* Default solver (one of CLP, SYM, CPX, GRB)
defaultSolver = CLP
#* External solvers (separated by semicolon)
externalSolvers =
# externalSolvers = GRB; CPX
#* Additional include directories (separated by semicolon)
solverIncludes =
# solverIncludes = C:\gurobi501\win64\include; C:\Program Files\IBM\ILOG\CPLEX_Studio124\cplex\include\ilcplex
#* Additional libraries for external solvers (separated by semicolon)
#* (only used for building the DLL)
solverLibs_win32_release =
# solverLibs_win32_release = C:\gurobi501\win32\lib\gurobi50.lib
solverLibs_win32_debug =
# solverLibs_win32_debug = C:\gurobi501\win32\lib\gurobi50.lib
solverLibs_x64_release =
# solverLibs_x64_release = C:\gurobi501\win64\lib\gurobi50.lib; C:\Program Files\IBM\ILOG\CPLEX_Studio124\cplex\lib\x64_windows_vs2010\stat_mda\cplex124.lib
solverLibs_x64_debug =
# solverLibs_x64_debug = C:\gurobi501\win64\lib\gurobi50.lib; C:\Program Files\IBM\ILOG\CPLEX_Studio124\cplex\lib\x64_windows_vs2010\stat_mdd\cplex124.lib
#==========================================================
[OGDF-TEST]
#**********************************************************
#* File name of OGDF project template file
templateFile = config/ogdf-test.vcxproj.template
#* File name of OGDF project filters template file
templateFiltersFile = config/ogdf-test.vcxproj.filters.template
#* File name of created OGDF project file
projectFile = ogdf-test.vcxproj
#* File name of created OGDF project filters file
projectFiltersFile = ogdf-test.vcxproj.filters
|