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:
-
Aug 3, 2010, 8:23:23 AM (15 years ago)
- Author:
-
Víctor de Buen Remiro
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v4
|
v5
|
|
31 | 31 | |
32 | 32 | Set _.autodoc.nonTolResources = { [[ |
33 | | Set CrossPlatform = { [[ |
34 | | Text cpp="cpp" |
| 33 | Set lin32_x86 = { [[ |
| 34 | Text so="cpp/Linux-x86_32/libMyTools.so" |
| 35 | ]] }, |
| 36 | Set lin64_x86 = { [[ |
| 37 | Text so="cpp/Linux-x86_64/libMyTools.so" |
| 38 | ]] }, |
| 39 | Set win32_x86 = { [[ |
| 40 | Text dll="cpp/Windows-x86_32/libMyTools.dll" |
| 41 | ]] }, |
| 42 | Set win64_x86 = { [[ |
| 43 | Text dll="cpp/Windows-x86_64/libMyTools.dll" |
35 | 44 | ]] } |
| 45 | ]] } |
36 | 46 | |
37 | 47 | ... |
… |
… |
|
39 | 49 | Real StartActions(Real void) |
40 | 50 | { |
41 | | NameBlock Tools := LoadDynLib("cpp/tools.dll"); |
| 51 | NameBlock Tools := LoadDynLib("cpp/"+GetHardSoftPlattform(0)+"/libMyTools."+GetSharedLibExt(0)); |
42 | 52 | |
43 | 53 | ... |