Develop and Download Open Source Software

Browse Subversion Repository

Contents of /branches/putty_0_76/gtags_update.cmake

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9625 - (show annotations) (download)
Thu Dec 23 16:34:36 2021 UTC (2 years, 3 months ago) by nmaya
File size: 719 byte(s)
branch for PuTTY 0.76 support

against trunk
1 #!/usr/bin/env cmake -P
2 find_program(FIND find
3 HINTS C:/cygwin64/bin
4 HINTS C:/cygwin/bin
5 HINTS C:/msys64/usr/bin
6 )
7 find_program(GREP grep
8 HINTS C:/cygwin64/bin
9 HINTS C:/cygwin/bin
10 HINTS C:/msys64/usr/bin
11 )
12 find_program(GTAGS gtags)
13 message("FIND=${FIND}")
14 message("GREP=${GREP}")
15 message("GTAGS=${GTAGS}")
16
17 execute_process(
18 COMMAND ${FIND} teraterm TTProxy TTX* ttssh2 -type f -name "*.c" -o -name "*.cpp" -o -name "*.h"
19 COMMAND ${GREP} -v Release
20 COMMAND ${GREP} -v Debug
21 COMMAND ${GREP} -v .vs
22 COMMAND ${GREP} -v build
23 OUTPUT_FILE gtags.files
24 WORKING_DIRECTORY "."
25 )
26 execute_process(
27 COMMAND ${GTAGS} -f gtags.files
28 )
29 # see doc_internal/readme.md
30

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26