Commit 5d9480d8ab93a723c6623f698a07c6eadae07d52

Authored by David RENÉ
1 parent eb355229

change everywhere to point to 1.19

hayamiki_ds_types.anubis
... ... @@ -14,14 +14,14 @@ read hayamiki_lib/ds_files/ds_types.anubis
14 14  
15 15  
16 16 global define One
17   - hayamiki_1_14_lib_ds
  17 + hayamiki_1_19_lib_ds
18 18 (
19 19 List(String) args
20 20 ) =
21   - if load_ds_generator_1_14 is
  21 + if load_ds_generator_1_19 is
22 22 {
23 23 failure then println("Densaku generator can't be load"),
24 24 success(ds_gen) then forget(ds_gen.generate_type_files(hayamiki_lib_types_description, [], "ds_files/"))
25 25 }.
26 26  
27   -execute anbexec hayamiki_1_14_lib_ds // generate the file
  27 +execute anbexec hayamiki_1_19_lib_ds // generate the file
... ...
hayamiki_ds_types.aproj
... ... @@ -5,9 +5,13 @@
5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 6 <OutputType>Exe</OutputType>
7 7 <RootNamespace>hayamiki_ds_types</RootNamespace>
8   - <AssemblyName>hayamiki_1_14_ds_types</AssemblyName>
  8 + <AssemblyName>hayamiki_1_19_ds_types</AssemblyName>
9 9 <StartupObject>hayamiki_ds_types.anubis</StartupObject>
10 10 <IncludePaths>./</IncludePaths>
  11 + <MakeUsedFile>False</MakeUsedFile>
  12 + <MakeUnusedFile>False</MakeUnusedFile>
  13 + <AnubiscVerbosity>False</AnubiscVerbosity>
  14 + <AnubisPath>c:\anubis.1.19\</AnubisPath>
11 15 </PropertyGroup>
12 16 <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
13 17 <OutputPath>bin\Debug\</OutputPath>
... ...
hayamiki_generator.aproj
... ... @@ -11,7 +11,7 @@
11 11 <MakeUsedFile>False</MakeUsedFile>
12 12 <MakeUnusedFile>False</MakeUnusedFile>
13 13 <AnubiscVerbosity>False</AnubiscVerbosity>
14   - <AnubisPath>C:\Program Files (x86)\Anubis\1.14\</AnubisPath>
  14 + <AnubisPath>C:\anubis\1.19\</AnubisPath>
15 15 </PropertyGroup>
16 16 <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
17 17 <OutputPath>bin\Debug\</OutputPath>
... ... @@ -259,7 +259,7 @@
259 259 <Compile Include="library\tools\admloader_test.anubis" />
260 260 <Compile Include="library\tools\adm_autoreload.anubis" />
261 261 <Compile Include="library\tools\adm_autoreload_tools.anubis" />
262   - <Compile Include="library\tools\avltrees.anubis" />
  262 + <Compile Include="library\tools\avlt_dictionnaries.anubis" />
263 263 <Compile Include="library\tools\base64.anubis" />
264 264 <Compile Include="library\tools\basis.anubis" />
265 265 <Compile Include="library\tools\bool.anubis" />
... ... @@ -312,6 +312,7 @@
312 312 <Compile Include="library\tools\useful_types.anubis" />
313 313 <Compile Include="library\tools\utf-8.anubis" />
314 314 <Compile Include="library\tools\words.anubis" />
  315 + <Compile Include="library\types\generated\mime.anubis" />
315 316 <Compile Include="library\version2\diaconescu.anubis" />
316 317 <Compile Include="library\vm\vm_dump.anubis" />
317 318 <Compile Include="library\vm_test.anubis" />
... ... @@ -803,6 +804,8 @@
803 804 <Folder Include="library\test\system" />
804 805 <Folder Include="library\test\tools" />
805 806 <Folder Include="library\tools" />
  807 + <Folder Include="library\types" />
  808 + <Folder Include="library\types\generated" />
806 809 <Folder Include="library\version2" />
807 810 <Folder Include="library\vm" />
808 811 <Folder Include="library\web" />
... ...
src/generation/files.anubis
... ... @@ -291,6 +291,6 @@ define Maybe(One)
291 291  
292 292  
293 293 global define HK_Generator_API
294   - hk_gen_1_14 =
  294 + hk_gen_1_19 =
295 295 hk_api(generate_model_files).
296 296  
... ...
src/main.anubis
... ... @@ -21,11 +21,11 @@ read model.3.0.0.anubis
21 21 read system/muscle.anubis
22 22  
23 23 global define One
24   - hayamiki_1_14
  24 + hayamiki_1_19
25 25 (
26 26 List(String) args
27 27 ) =
28   - if load_hk_generator_1_14 is
  28 + if load_hk_generator_1_19 is
29 29 {
30 30 failure then println("Hayamiki generator can't be load"),
31 31 success(hk_gen) then forget(hk_gen.generate_model_files(the_database_description, "", true))
... ...
xlib @ 949610f9d1d
1   -Subproject commit 28d9354a10a9e2667e76d63ee76995c16f438218
  1 +Subproject commit 949610f9d1d08e5d9af777975857a7b1d79962cd
... ...