0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-14 18:07:59 +08:00

unicode: Default toolset for Unix systems is gcc

git-svn-id: http://pugixml.googlecode.com/svn/trunk@279 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2010-04-20 20:46:18 +00:00
parent 20edc02ff7
commit dc0a2a815b

View File

@ -13,7 +13,14 @@
# default toolset/configuration
if ( ! $(toolset) )
{
exit You should specify a toolset ;
if ( $(UNIX) )
{
toolset = "gcc" ;
}
else
{
exit You should specify a toolset ;
}
}
if ( ! $(configuration) )