1
0
forked from GitHub/gf-core

checked compilation of all resource languages

This commit is contained in:
aarne
2010-04-22 18:55:46 +00:00
parent cbbc2a50d7
commit a87b795aba
4 changed files with 9 additions and 5 deletions

View File

@@ -60,13 +60,16 @@ langs = map fst langsCoding
langsLangAll = langs
-- languagues that are almost complete and for which Lang is normally compiled
langsLang = langs `except` ["Ara","Hin","Lat","Tha","Tur"]
langsLang = langs `except` langsIncomplete ---- []
-- languages for which Lang can be compiled but which are incomplete
langsIncomplete = ["Ara","Hin","Lat","Tha","Tur"]
-- languages for which to compile Try
langsAPI = langsLang `except` ["Ina"]
langsAPI = langsLang `except` (langsIncomplete ++ ["Ina"])
-- languages for which to compile Symbolic
langsSymbolic = langsLang `except` ["Rus","Ina"]
langsSymbolic = langsLang `except` (langsIncomplete ++ ["Rus","Ina"])
-- languages for which to compile minimal Syntax
langsMinimal = langs `only` ["Ara","Eng","Bul","Rus"]