source: trunk/cmake/exec_getsvnrev.sh @ 2088

Last change on this file since 2088 was 2088, checked in by Takeshi Nakazato, 13 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Modified CMakeLists.txt to execute getsvnrev.sh when cmake is executed.
Added executable to execute getsvnrev.sh properly.


  • Property svn:executable set to *
File size: 96 bytes
Line 
1#! /bin/bash
2
3DIR=.
4if [ $# -ge 1 ]; then
5    DIR=$1
6fi
7
8pushd ${DIR}
9${DIR}/getsvnrev.sh
10pushd
Note: See TracBrowser for help on using the repository browser.