Add GeneratePkgConfig.cmake for tags

This commit is contained in:
Gyusun Yeom 2021-01-16 22:22:16 +09:00
parent a1e2e3deab
commit b78f12e465

View File

@ -118,7 +118,7 @@ import_tags () {
do
echo "Import $TAG"
git checkout $TAG -- .
git checkout master -- CMakeLists.txt
git checkout master -- CMakeLists.txt GeneratePkgConfig.cmake
cd "$WORKSPACE/auto"
COMMIT_TIME=`git log -1 $TAG --format=%ct`
echo "Patch perl scripts for new version"
@ -152,7 +152,7 @@ import_tags () {
make
cd "$WORKSPACE"
git reset
git add --force src include doc CMakeLists.txt build/*.rc
git add --force src include doc CMakeLists.txt GeneratePkgConfig.cmake build/*.rc
if [ `git diff --cached | wc -c` -ne 0 ]; then
git commit -m"glew-cmake release from $TAG"
NEW_TAG=`echo $TAG | sed s/glew-/glew-cmake-/`