Skip to content
Snippets Groups Projects
Commit 2a14a3b4 authored by arseny.kapoulkine's avatar arseny.kapoulkine
Browse files

Added MSVC building

git-svn-id: http://pugixml.googlecode.com/svn/trunk@186 99668b35-9821-0410-8761-19e4c4f06640
parent 9216c82c
No related branches found
No related tags found
No related merge requests found
# Latest jamplus is needed to use this # Latest jamplus is needed to use this
# Targets: # Targets:
# pugixml - build pugixml library # pugixml - build pugixml library
# tests - build pugixml test suite # tests - build pugixml test suite
# run_tests - run pugixml test suite # run_tests - run pugixml test suite
# coverage - get test suite coverage # coverage - get test suite coverage
include "Jamrules.jam" ; # Options:
# toolset=name - select toolset
# supported toolsets: mingw*, msvc*
# default toolset/configuration
if ( ! $(toolset) )
{
exit You should specify a toolset ;
}
if ( ! $(configuration) )
{
configuration = "debug" ;
}
BUILD = build/mingw/debug ; # options
CCFLAGS = -fprofile-arcs -ftest-coverage ; BUILD = build/$(toolset)/$(configuration) ;
LDFLAGS = -fprofile-arcs ;
GCOVFLAGS = -n ; if ( $(toolset) = "mingw" )
{
CCFLAGS = -fprofile-arcs -ftest-coverage ;
LDFLAGS = -fprofile-arcs ;
GCOVFLAGS = -n ;
}
# rules
include "Jamrules.jam" ;
# targets
Library pugixml : src/pugixml.cpp src/pugixpath.cpp ; Library pugixml : src/pugixml.cpp src/pugixpath.cpp ;
Application tests : tests/main.cpp [ Glob tests : test_*.cpp ] : pugixml ; Application tests : tests/main.cpp [ Glob tests : test_*.cpp ] : pugixml ;
Test run_tests : tests ; Test run_tests : tests ;
......
# Rules for Jamfile.jam # Rules for Jamfile.jam
actions ObjectAction if ( $(toolset:I=^mingw) )
{ {
%MINGW_PATH%\bin\gcc -W -Wall -Wextra -Werror -pedantic -c $(>) -o $(<) $(CCFLAGS) if ( $(configuration) = "debug" )
} {
CCFLAGS += -D_DEBUG ;
}
else
{
CCFLAGS += -DNDEBUG -O3 ;
}
actions LibraryAction actions ObjectAction
{ {
%MINGW_PATH%\bin\ar rc $(<) $(>) %$(toolset)_PATH%\bin\gcc -W -Wall -Wextra -Werror -pedantic -c $(>) -o $(<) $(CCFLAGS)
}
actions LibraryAction
{
%$(toolset)_PATH%\bin\ar rc $(<) $(>)
}
actions LinkAction
{
%$(toolset)_PATH%\bin\g++ $(>) -o $(<) $(LDFLAGS)
}
actions CoverageAction
{
%$(toolset)_PATH%\bin\gcov $(>:\\) $(GCOVFLAGS) | perl tests/gcov-filter.pl
}
} }
else if ( $(toolset:I^=msvc) )
actions LinkAction
{ {
%MINGW_PATH%\bin\g++ $(>) -o $(<) $(LDFLAGS) if ( $(configuration) = "debug" )
} {
CCFLAGS += /D_DEBUG /MTd ;
}
else
{
CCFLAGS += /DNDEBUG /Ox /MT ;
}
actions CoverageAction if ( $(toolset) != msvc6 )
{ {
%MINGW_PATH%\bin\gcov $(>:\\) $(GCOVFLAGS) | perl tests/gcov-filter.pl CCFLAGS += /Wp64 /W4 ;
}
else
{
CCFLAGS += /W3 ; # lots of warnings at W4 in standard library
}
actions ObjectAction
{
%$(toolset)_PATH%\bin\cl.exe /EHsc /WX /I%$(toolset)_PATH%\include /c $(>) /Fo$(<) /nologo $(CCFLAGS)
}
actions LibraryAction
{
%$(toolset)_PATH%\bin\lib.exe /NOLOGO /OUT:$(<) $(>)
}
actions LinkAction
{
%$(toolset)_PATH%\bin\link.exe /SUBSYSTEM:CONSOLE /NOLOGO /OUT:$(<) $(>) /LIBPATH:%$(toolset)_PATH%\lib /LIBPATH:%$(toolset)_PATH%\PlatformSDK\lib $(LDFLAGS)
}
actions CoverageAction
{
}
} }
actions RunAction actions RunAction
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment