source: pacpusframework/branches/0.2.x/scripts/change-all-licenses.bat@ 378

Last change on this file since 378 was 89, checked in by morasjul, 11 years ago

PACPUS 2.0 Beta deployed in new branch

Major changes:
-Add communication interface between components
-Add examples for communications interface (TestComponents)
-Move to Qt5 support

  • Property svn:executable set to *
File size: 468 bytes
Line 
1@echo off
2
3:parameters
4set SCRIPTS_DIR=%CD%
5set DIRECTORIES=..\include ..\src
6set FILES_TO_UPDATE=*.h *.c *.hpp *.cpp *.hxx *.cxx *.cc *.tcc
7
8:scan
9:: for all directories
10for %%D in (%DIRECTORIES%) do (
11 ::echo %%D
12 cd %SCRIPTS_DIR%
13 cd %%D
14 :: find source files
15 :: update each file
16 for /R %%E in (%FILES_TO_UPDATE%) do (
17 "%SCRIPTS_DIR%\update-license.bat" "%%E" "%SCRIPTS_DIR%"
18 )
19)
20
21:exit
22cd %SCRIPTS_DIR%
23pause
Note: See TracBrowser for help on using the repository browser.