Files
GDevelop/IDE/scripts/UpdateHeadersAndPCHDebug.sh
T
Florian c78fa1dc9e Corrected a subtle bug in DebuggerGUI when dealing with a std::map.
Corrected "Open examples" functions.

git-svn-id: svn://localhost@740 8062f311-0dae-4547-b526-b8ab9ac864a5
2012-06-01 14:04:12 +00:00

32 lines
1.1 KiB
Bash

#!/bin/sh
echo
echo Tool for updating include directory for debug target.
echo
echo -Copying files...
# rm ../bin/debug/include/*.* -r
# Game Develop C++ Implementation headers
rsync -r -u --include=*.h --include=*/ --exclude=* ../../GDL/ ../bin/debug/include/GDL/
# Game Develop Core headers
rsync -r -u --include=*.h --include=*/ --exclude=* ../../Core/ ../bin/debug/include/Core/
# Boost (shared_ptr and dependencies) headers
rsync -r -u --include=*.h --include=*.hpp --include=*.inc --include=*.inl --include=*/ --exclude=* ../../ExtLibs/boost/boost/ ../bin/debug/include/boost/boost/
# SFML headers
rsync -r -u --include=*.h --include=*.hpp --include=*.inc --include=*.inl --include=*/ --exclude=* ../../ExtLibs/SFML/include/ ../bin/debug/include/SFML/include/
# Extensions headers
rsync -r -u --include=*.h --include=*.hpp --include=*.inc --include=*.inl --include=*/ --exclude=* ../../Extensions/ ../bin/debug/Extensions/include/
# Extensions libs
rsync -r -u --include=*.a --include=*/ --exclude=* ../../Extensions/ ../bin/debug/Extensions/include/
echo
echo -End of copy
echo 
echo -Done