mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 11:55:28 -04:00
c78fa1dc9e
Corrected "Open examples" functions. git-svn-id: svn://localhost@740 8062f311-0dae-4547-b526-b8ab9ac864a5
32 lines
1.1 KiB
Bash
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
|