| 1 | @ECHO OFF
|
|---|
| 2 | SETLOCAL
|
|---|
| 3 |
|
|---|
| 4 | REM #
|
|---|
| 5 | REM # File produced by the obuild tool version 1.0
|
|---|
| 6 | REM # for the package snova with version v2r0p0.
|
|---|
| 7 | REM #
|
|---|
| 8 |
|
|---|
| 9 | REM #////////////////////////////////////////////////
|
|---|
| 10 | REM # Usage :
|
|---|
| 11 | REM # DOS> CD some_path\pack\version\obuild
|
|---|
| 12 | REM # DOS> DOS\build_snova_ui
|
|---|
| 13 | REM #
|
|---|
| 14 | REM #////////////////////////////////////////////////
|
|---|
| 15 |
|
|---|
| 16 | REM #////////////////////////////////////////////////
|
|---|
| 17 | REM #/// Get path of this file :
|
|---|
| 18 | REM #////////////////////////////////////////////////
|
|---|
| 19 | SET obuild_snova_path=%~dp0
|
|---|
| 20 | REM # Remove ending \obuild\DOS\
|
|---|
| 21 | SET obuild_snova_path=%obuild_snova_path:~0,-12%
|
|---|
| 22 |
|
|---|
| 23 | REM #////////////////////////////////////////////////
|
|---|
| 24 | REM #/// Treat arguments :
|
|---|
| 25 | REM #////////////////////////////////////////////////
|
|---|
| 26 |
|
|---|
| 27 | SET obuild_verbose=no
|
|---|
| 28 | SET obuild_debug=no
|
|---|
| 29 | SET obuild_optimize=yes
|
|---|
| 30 | SET obuild_set_x=no
|
|---|
| 31 |
|
|---|
| 32 | :next_arg
|
|---|
| 33 | IF "%1%" == "" GOTO end_args
|
|---|
| 34 |
|
|---|
| 35 | IF NOT "%1%" == "-v" GOTO end_if_v
|
|---|
| 36 | SET obuild_verbose=yes
|
|---|
| 37 | SHIFT
|
|---|
| 38 | GOTO next_arg
|
|---|
| 39 | :end_if_v
|
|---|
| 40 |
|
|---|
| 41 | IF NOT "%1%" == "-g" GOTO end_if_g
|
|---|
| 42 | SET obuild_debug=yes
|
|---|
| 43 | SHIFT
|
|---|
| 44 | GOTO next_arg
|
|---|
| 45 | :end_if_g
|
|---|
| 46 |
|
|---|
| 47 | IF NOT "%1%" == "-x" GOTO end_if_x
|
|---|
| 48 | SET obuild_set_x=yes
|
|---|
| 49 | SHIFT
|
|---|
| 50 | GOTO next_arg
|
|---|
| 51 | :end_if_x
|
|---|
| 52 |
|
|---|
| 53 | :end_args
|
|---|
| 54 |
|
|---|
| 55 | REM #////////////////////////////////////////////////
|
|---|
| 56 | REM #/// End arguments.
|
|---|
| 57 | REM #////////////////////////////////////////////////
|
|---|
| 58 |
|
|---|
| 59 | IF %obuild_set_x% == yes ECHO ON
|
|---|
| 60 |
|
|---|
| 61 | IF %obuild_debug% == yes SET obuild_optimize=no
|
|---|
| 62 |
|
|---|
| 63 | IF "%OBUILD_PLATFORM%" == "" (
|
|---|
| 64 | IF "%OS%" == "" ECHO Environment variable OS not found. & GOTO obuild_return
|
|---|
| 65 | SET obuild_platform=%OS%
|
|---|
| 66 | ) ELSE (
|
|---|
| 67 | SET obuild_platform=%OBUILD_PLATFORM%
|
|---|
| 68 | )
|
|---|
| 69 |
|
|---|
| 70 | IF "%obuild_platform%" == "" (
|
|---|
| 71 | ECHO obuild_platform variable not defined.
|
|---|
| 72 | GOTO obuild_return
|
|---|
| 73 | )
|
|---|
| 74 |
|
|---|
| 75 | IF "%OBUILD_DIR_BIN%" == "" (
|
|---|
| 76 | SET obuild_dir_bin=bin_obuild
|
|---|
| 77 | ) ELSE (
|
|---|
| 78 | SET obuild_dir_bin=%OBUILD_DIR_BIN%
|
|---|
| 79 | )
|
|---|
| 80 |
|
|---|
| 81 | IF "%obuild_dir_bin%" == "" (
|
|---|
| 82 | ECHO obuild_dir_bin variable not defined.
|
|---|
| 83 | GOTO obuild_return
|
|---|
| 84 | )
|
|---|
| 85 |
|
|---|
| 86 | IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%" MKDIR "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 87 |
|
|---|
| 88 | IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%" MKDIR "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 89 | IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%\obuild_platform.exe" (
|
|---|
| 90 | cl.exe /nologo /DWIN32 /MD /O2 /W3 /GX /GR /Fe"%obuild_snova_path%\%obuild_dir_bin%\obuild_platform.exe" "%obuild_snova_path%\obuild\cpp\obuild_platform.cpp" 1> NUL
|
|---|
| 91 | IF EXIST obuild_platform.obj DEL obuild_platform.obj
|
|---|
| 92 | )
|
|---|
| 93 |
|
|---|
| 94 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 95 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 96 | IF NOT EXIST .\obuild_platform.exe ECHO Program obuild_platform.exe not found. && GOTO obuild_return
|
|---|
| 97 | FOR /F "usebackq" %%j IN (`.\obuild_platform.exe %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
|
|---|
| 98 | cd "%obuild_pwd_snova_0%"
|
|---|
| 99 | SET obuild_pwd_snova_0=
|
|---|
| 100 | IF NOT %obuild_platform_result% == yes GOTO end_if_platform_0
|
|---|
| 101 | SET obuild_cxx_command=cl.exe
|
|---|
| 102 | :end_if_platform_0
|
|---|
| 103 | SET obuild_platform_result=
|
|---|
| 104 | IF "%obuild_cxx_command%" == "" ECHO Variable obuild_cxx_command not defined. && GOTO obuild_return
|
|---|
| 105 |
|
|---|
| 106 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 107 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 108 | IF NOT EXIST .\obuild_platform.exe ECHO Program obuild_platform.exe not found. && GOTO obuild_return
|
|---|
| 109 | FOR /F "usebackq" %%j IN (`.\obuild_platform.exe %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
|
|---|
| 110 | cd "%obuild_pwd_snova_0%"
|
|---|
| 111 | SET obuild_pwd_snova_0=
|
|---|
| 112 | IF NOT %obuild_platform_result% == yes GOTO end_if_platform_1
|
|---|
| 113 | SET obuild_cxx_optimize=/O2
|
|---|
| 114 | :end_if_platform_1
|
|---|
| 115 | SET obuild_platform_result=
|
|---|
| 116 |
|
|---|
| 117 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 118 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 119 | IF NOT EXIST .\obuild_platform.exe ECHO Program obuild_platform.exe not found. && GOTO obuild_return
|
|---|
| 120 | FOR /F "usebackq" %%j IN (`.\obuild_platform.exe %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
|
|---|
| 121 | cd "%obuild_pwd_snova_0%"
|
|---|
| 122 | SET obuild_pwd_snova_0=
|
|---|
| 123 | IF NOT %obuild_platform_result% == yes GOTO end_if_platform_2
|
|---|
| 124 | SET obuild_cxx_debug=/ZI /Od
|
|---|
| 125 | :end_if_platform_2
|
|---|
| 126 | SET obuild_platform_result=
|
|---|
| 127 |
|
|---|
| 128 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 129 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 130 | IF NOT EXIST .\obuild_platform.exe ECHO Program obuild_platform.exe not found. && GOTO obuild_return
|
|---|
| 131 | FOR /F "usebackq" %%j IN (`.\obuild_platform.exe %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
|
|---|
| 132 | cd "%obuild_pwd_snova_0%"
|
|---|
| 133 | SET obuild_pwd_snova_0=
|
|---|
| 134 | IF NOT %obuild_platform_result% == yes GOTO end_if_platform_3
|
|---|
| 135 | SET obuild_cxx_options=/nologo /DWIN32 /MD /GX /GR /W3
|
|---|
| 136 | :end_if_platform_3
|
|---|
| 137 | SET obuild_platform_result=
|
|---|
| 138 |
|
|---|
| 139 | IF NOT %obuild_debug% == yes GOTO else_if_db_build_lib_snova_ui_sh_4
|
|---|
| 140 | SET obuild_cxx_debug_local=%obuild_cxx_debug%
|
|---|
| 141 | GOTO end_if_db_build_lib_snova_ui_sh_4
|
|---|
| 142 | :else_if_db_build_lib_snova_ui_sh_4
|
|---|
| 143 | SET obuild_cxx_debug_local=
|
|---|
| 144 | :end_if_db_build_lib_snova_ui_sh_4
|
|---|
| 145 |
|
|---|
| 146 | IF NOT %obuild_optimize% == yes GOTO else_if_opt_build_lib_snova_ui_sh_5
|
|---|
| 147 | SET obuild_cxx_optimize_local=%obuild_cxx_optimize%
|
|---|
| 148 | GOTO end_if_opt_build_lib_snova_ui_sh_5
|
|---|
| 149 | :else_if_opt_build_lib_snova_ui_sh_5
|
|---|
| 150 | SET obuild_cxx_optimize_local=
|
|---|
| 151 | :end_if_opt_build_lib_snova_ui_sh_5
|
|---|
| 152 |
|
|---|
| 153 |
|
|---|
| 154 | IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%" MKDIR "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 155 | IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%\obuild_find.exe" (
|
|---|
| 156 | cl.exe /nologo /DWIN32 /MD /O2 /W3 /GX /GR /Fe"%obuild_snova_path%\%obuild_dir_bin%\obuild_find.exe" "%obuild_snova_path%\obuild\cpp\obuild_find.cpp" 1> NUL
|
|---|
| 157 | IF EXIST obuild_find.obj DEL obuild_find.obj
|
|---|
| 158 | )
|
|---|
| 159 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 160 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 161 | IF NOT EXIST obuild_find.exe ECHO Program obuild_find.exe not found. && GOTO obuild_return
|
|---|
| 162 | FOR /F "usebackq delims=;" %%j IN (`.\obuild_find.exe bhep v1r4p2`) DO SET obuild_bhep_path=%%j
|
|---|
| 163 | cd "%obuild_pwd_snova_0%"
|
|---|
| 164 | SET obuild_pwd_snova_0=
|
|---|
| 165 | IF NOT DEFINED obuild_bhep_path ECHO Can't find bhep package. && GOTO obuild_return
|
|---|
| 166 |
|
|---|
| 167 | SET obuild_cxx_includes=/I"%obuild_snova_path%"
|
|---|
| 168 | SET obuild_cxx_includes=%obuild_cxx_includes% /I"%obuild_snova_path%\source\GeomUtils\include"
|
|---|
| 169 | SET obuild_cxx_includes=%obuild_cxx_includes% /I"%obuild_snova_path%\source\SNgeom2\include"
|
|---|
| 170 | SET obuild_cxx_includes=%obuild_cxx_includes% /I"%obuild_snova_path%\source\SNvertex\include"
|
|---|
| 171 | SET obuild_cxx_includes=%obuild_cxx_includes% /I"%obuild_bhep_path%"
|
|---|
| 172 |
|
|---|
| 173 | IF EXIST "%obuild_snova_path%\%obuild_dir_bin%\lib_snova_ui" RMDIR /S /Q "%obuild_snova_path%\%obuild_dir_bin%\lib_snova_ui"
|
|---|
| 174 | IF NOT EXIST "%obuild_snova_path%\%obuild_dir_bin%\lib_snova_ui" MKDIR "%obuild_snova_path%\%obuild_dir_bin%\lib_snova_ui"
|
|---|
| 175 |
|
|---|
| 176 | @IF %obuild_verbose% == yes @ECHO ON
|
|---|
| 177 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 178 | %obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova_ui\OpenGLXVisManager.obj /Tp"..\source\snova\ui\OpenGLXVisManager.cc" 1> cl_exe_error
|
|---|
| 179 | @IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
|
|---|
| 180 | @IF NOT ERRORLEVEL 1 @DEL cl_exe_error
|
|---|
| 181 | cd "%obuild_snova_path%\obuild"
|
|---|
| 182 |
|
|---|
| 183 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 184 | %obuild_cxx_command% /c %obuild_cxx_debug_local% %obuild_cxx_optimize_local% %obuild_cxx_options% %obuild_cxx_macros% %obuild_cxx_includes% /Fo.\lib_snova_ui\snova_mgr_ui.obj /Tp"..\source\snova\ui\snova_mgr_ui.cc" 1> cl_exe_error
|
|---|
| 185 | @IF ERRORLEVEL 1 @TYPE cl_exe_error && @GOTO obuild_return
|
|---|
| 186 | @IF NOT ERRORLEVEL 1 @DEL cl_exe_error
|
|---|
| 187 | cd "%obuild_snova_path%\obuild"
|
|---|
| 188 |
|
|---|
| 189 | @IF %obuild_verbose% == yes @ECHO OFF
|
|---|
| 190 |
|
|---|
| 191 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 192 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 193 | IF NOT EXIST .\obuild_platform.exe ECHO Program obuild_platform.exe not found. && GOTO obuild_return
|
|---|
| 194 | FOR /F "usebackq" %%j IN (`.\obuild_platform.exe %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
|
|---|
| 195 | cd "%obuild_pwd_snova_0%"
|
|---|
| 196 | SET obuild_pwd_snova_0=
|
|---|
| 197 | IF NOT %obuild_platform_result% == yes GOTO end_if_platform_13
|
|---|
| 198 | SET obuild_cxx_linker_command=link.exe
|
|---|
| 199 | :end_if_platform_13
|
|---|
| 200 | SET obuild_platform_result=
|
|---|
| 201 | IF "%obuild_cxx_linker_command%" == "" ECHO Variable obuild_cxx_linker_command not defined. && GOTO obuild_return
|
|---|
| 202 |
|
|---|
| 203 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 204 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 205 | IF NOT EXIST .\obuild_platform.exe ECHO Program obuild_platform.exe not found. && GOTO obuild_return
|
|---|
| 206 | FOR /F "usebackq" %%j IN (`.\obuild_platform.exe %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
|
|---|
| 207 | cd "%obuild_pwd_snova_0%"
|
|---|
| 208 | SET obuild_pwd_snova_0=
|
|---|
| 209 | IF NOT %obuild_platform_result% == yes GOTO end_if_platform_14
|
|---|
| 210 | SET obuild_cxx_linker_debug=/DEBUG
|
|---|
| 211 | :end_if_platform_14
|
|---|
| 212 | SET obuild_platform_result=
|
|---|
| 213 |
|
|---|
| 214 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 215 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 216 | IF NOT EXIST .\obuild_platform.exe ECHO Program obuild_platform.exe not found. && GOTO obuild_return
|
|---|
| 217 | FOR /F "usebackq" %%j IN (`.\obuild_platform.exe %obuild_platform% Windows_NT`) DO SET obuild_platform_result=%%j
|
|---|
| 218 | cd "%obuild_pwd_snova_0%"
|
|---|
| 219 | SET obuild_pwd_snova_0=
|
|---|
| 220 | IF NOT %obuild_platform_result% == yes GOTO end_if_platform_15
|
|---|
| 221 | SET obuild_cxx_linker_options=/nologo
|
|---|
| 222 | :end_if_platform_15
|
|---|
| 223 | SET obuild_platform_result=
|
|---|
| 224 |
|
|---|
| 225 | IF NOT %obuild_debug% == yes GOTO else_if_db_build_lib_snova_ui_sh_16
|
|---|
| 226 | SET obuild_cxx_linker_debug_local=%obuild_cxx_linker_debug%
|
|---|
| 227 | GOTO end_if_db_build_lib_snova_ui_sh_16
|
|---|
| 228 | :else_if_db_build_lib_snova_ui_sh_16
|
|---|
| 229 | SET obuild_cxx_linker_debug_local=
|
|---|
| 230 | :end_if_db_build_lib_snova_ui_sh_16
|
|---|
| 231 |
|
|---|
| 232 | IF NOT %obuild_optimize% == yes GOTO else_if_opt_build_lib_snova_ui_sh_17
|
|---|
| 233 | SET obuild_cxx_linker_optimize_local=%obuild_cxx_linker_optimize%
|
|---|
| 234 | GOTO end_if_opt_build_lib_snova_ui_sh_17
|
|---|
| 235 | :else_if_opt_build_lib_snova_ui_sh_17
|
|---|
| 236 | SET obuild_cxx_linker_optimize_local=
|
|---|
| 237 | :end_if_opt_build_lib_snova_ui_sh_17
|
|---|
| 238 |
|
|---|
| 239 | FOR /F "usebackq delims=;" %%d IN (`cd`) DO SET obuild_pwd_snova_0=%%d
|
|---|
| 240 | cd "%obuild_snova_path%\%obuild_dir_bin%"
|
|---|
| 241 | IF EXIST .\lib_snova_ui\tmp_objs DEL .\lib_snova_ui\tmp_objs
|
|---|
| 242 | FOR %%f IN (.\lib_snova_ui\*.obj) DO ECHO %%f >> .\lib_snova_ui\tmp_objs
|
|---|
| 243 |
|
|---|
| 244 | REM # Create the archive library snova_ui :
|
|---|
| 245 | @IF %obuild_verbose% == yes @ECHO ON
|
|---|
| 246 | lib.exe /nologo /machine:ix86 /out:.\lib_snova_ui\snova_ui.arc @.\lib_snova_ui\tmp_objs
|
|---|
| 247 | @IF ERRORLEVEL 1 @GOTO obuild_return
|
|---|
| 248 | @IF %obuild_verbose% == yes @ECHO OFF
|
|---|
| 249 |
|
|---|
| 250 | REM # Build the obuild_windef.exe utility program :
|
|---|
| 251 | cl.exe /nologo /DWIN32 /MD /O2 /W3 /Feobuild_windef.exe "%obuild_snova_path%\obuild\cpp\obuild_windef.c" 1> NUL
|
|---|
| 252 | IF EXIST obuild_windef.obj DEL obuild_windef.obj
|
|---|
| 253 |
|
|---|
| 254 | REM # Building the .def file :
|
|---|
| 255 | @IF %obuild_verbose% == yes @ECHO ON
|
|---|
| 256 | dumpbin.exe /symbols /out:.\lib_snova_ui\tmp .\lib_snova_ui\snova_ui.arc 1> dumpbin_exe_error .\lib_snova_ui\snova_ui.arc
|
|---|
| 257 | @IF ERRORLEVEL 1 @TYPE dumpbin_exe_error && @GOTO obuild_return
|
|---|
| 258 | @IF NOT ERRORLEVEL 1 @DEL dumpbin_exe_error
|
|---|
| 259 | @IF %obuild_verbose% == yes @ECHO OFF
|
|---|
| 260 | .\obuild_windef.exe snova_ui < .\lib_snova_ui\tmp > .\lib_snova_ui\snova_ui.def
|
|---|
| 261 | REM # Building the linking library :
|
|---|
| 262 | REM # It produces a .exp file.
|
|---|
| 263 | @IF %obuild_verbose% == yes @ECHO ON
|
|---|
| 264 | lib.exe /nologo /machine:ix86 /out:.\snova_ui.lib /def:.\lib_snova_ui\snova_ui.def 1> lib_exe_error
|
|---|
| 265 | @IF ERRORLEVEL 1 @TYPE lib_exe_error && @GOTO obuild_return
|
|---|
| 266 | @IF NOT ERRORLEVEL 1 @DEL lib_exe_error
|
|---|
| 267 | @IF %obuild_verbose% == yes @ECHO OFF
|
|---|
| 268 |
|
|---|
| 269 | REM # Building the DLL :
|
|---|
| 270 | IF EXIST .\snova_ui.dll DEL .\snova_ui.dll
|
|---|
| 271 | @IF %obuild_verbose% == yes @ECHO ON
|
|---|
| 272 | link.exe /nologo /dll /out:.\snova_ui.dll .\snova_ui.exp .\lib_snova_ui\snova_ui.arc %obuild_linked_libraries%
|
|---|
| 273 | @IF %obuild_verbose% == yes @ECHO OFF
|
|---|
| 274 |
|
|---|
| 275 | cd "%obuild_pwd_snova_0%"
|
|---|
| 276 | SET obuild_pwd_snova_0=
|
|---|
| 277 | REM # Some cleanup :
|
|---|
| 278 | IF EXIST "%obuild_snova_path%\%obuild_dir_bin%\lib_snova_ui\tmp_objs" DEL "%obuild_snova_path%\%obuild_dir_bin%\lib_snova_ui\tmp_objs"
|
|---|
| 279 | IF EXIST "%obuild_snova_path%\%obuild_dir_bin%\snova_ui.exp" DEL "%obuild_snova_path%\%obuild_dir_bin%\snova_ui.exp"
|
|---|
| 280 |
|
|---|
| 281 | :obuild_return
|
|---|
| 282 | ENDLOCAL
|
|---|
| 283 | @ECHO ON
|
|---|