close
Warning:
Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Mar 25, 2015, 9:18:27 AM (10 years ago)
- Author:
-
Jorge
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v16
|
v17
|
|
162 | 162 | |
163 | 163 | This will install the toltcl package and the executable tolsh.exe |
| 164 | |
| 165 | == TOLBASE == |
| 166 | |
| 167 | In order to build tolbase first prepare the directory to build the software: |
| 168 | |
| 169 | {{{ |
| 170 | cd c:\users\toldevel\trunk\tolbase |
| 171 | mkdir CodeLite\Debug |
| 172 | mkdir CodeLite\Release |
| 173 | }}} |
| 174 | |
| 175 | The configure the makefiles for the specific configuration either Debug or Release: |
| 176 | |
| 177 | {{{ |
| 178 | cd c:\users\toldevel\trunk\tolbase\CodeLite\Debug |
| 179 | cmake -DTOL_PREFIX_PATH=C:\users\toldevel\trunk\tol\CodeLite\Debug\Runtime_Base -DCMAKE_BUILD_TYPE=Debug -G"CodeLite - MinGW Makefiles" ..\.. |
| 180 | }}} |
| 181 | |
| 182 | {{{ |
| 183 | cd c:\users\toldevel\trunk\tolbase\CodeLite\Release |
| 184 | cmake -DTOL_PREFIX_PATH=C:\users\toldevel\trunk\tol\CodeLite\Release\Runtime_Base -DCMAKE_BUILD_TYPE=Release -G"CodeLite - MinGW Makefiles" ..\.. |
| 185 | }}} |
| 186 | |
| 187 | To build from command line just issue the command mingw32-make from any of the directories Debug or Release: |
| 188 | |
| 189 | {{{ |
| 190 | cd c:\users\toldevel\trunk\tolbase\CodeLite\Debug |
| 191 | mingw32-make |
| 192 | }}} |
| 193 | |
| 194 | {{{ |
| 195 | cd c:\users\toldevel\trunk\tolbase\CodeLite\Release |
| 196 | mingw32-make |
| 197 | }}} |
| 198 | |
| 199 | Finally if everything was ok we must install the binaries generated to the corresponding runtime directory: |
| 200 | |
| 201 | {{{ |
| 202 | cd c:\users\toldevel\trunk\toltbase\CodeLite\Debug |
| 203 | mingw32-make install |
| 204 | }}} |
| 205 | |
| 206 | {{{ |
| 207 | cd c:\users\toldevel\trunk\tolbase\CodeLite\Release |
| 208 | mingw32-make install |
| 209 | }}} |
| 210 | |
| 211 | This will install the tolbase at the runtime location. |