Changeset 36
- Timestamp:
- 03/08/09 22:15:15 (3 years ago)
- Location:
- trunk/mgunit
- Files:
-
- 4 modified
-
. (modified) (1 prop)
-
compile_mgunit.pro (modified) (1 diff)
-
Makefile (modified) (3 diffs)
-
mgunit_build_docs.pro (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mgunit
- Property svn:ignore
-
old new 1 1 .project 2 2 api-docs 3 mgunit-*-r*.zip
-
- Property svn:ignore
-
trunk/mgunit/compile_mgunit.pro
r17 r36 2 2 .compile mgutclirunner__define 3 3 .compile mguttestsuite__define 4 .compile error_is_fail 5 .compile mguthtmlrunner__define 6 .compile error_is_pass 4 .compile mguthtmlrunner__define 7 5 .compile mguttestcase__define 8 6 .compile mgunit 9 7 .compile mguttestrunner__define 8 .compile mgutcompoundrunner__define.pro 9 .compile mg_ansicode -
trunk/mgunit/Makefile
r34 r36 1 VERSION=1.0 alpha1 VERSION=1.0beta 2 2 REVISION=r`svn info | sed -n 's/Revision: \(.*\)/\1/p'` 3 3 RELEASE="$(VERSION)-$(REVISION)" … … 10 10 11 11 doc: 12 idl mgunit_build_docs12 idl -e mgunit_build_docs 13 13 14 14 clean: … … 21 21 rm -rf api-docs/ 22 22 23 $(IDL) mgunit_build_docs23 $(IDL) -e mgunit_build_docs 24 24 25 25 $(IDL) -IDL_STARTUP "" mgunit_build 26 26 27 mkdir mgunit-$(RELEASE) 27 mkdir mgunit-$(RELEASE)/ 28 28 29 29 mv mgunit.sav mgunit-$(RELEASE)/ 30 30 cp -r docs mgunit-$(RELEASE)/ 31 cp -r api-docs/ mgunit-$(RELEASE)/api-docs/ 31 cp -r api-docs mgunit-$(RELEASE)/ 32 cp src/error_is_fail.pro mgunit-$(RELEASE)/ 33 cp src/error_is_pass.pro mgunit-$(RELEASE)/ 34 cp src/style.css mgunit-$(RELEASE)/ 35 32 36 zip -r mgunit-$(RELEASE).zip mgunit-$(RELEASE)/* 33 37 rm -rf mgunit-$(RELEASE) -
trunk/mgunit/mgunit_build_docs.pro
r17 r36 1 @compile_mgunit 1 ; docformat = 'rst' 2 2 3 root = mg_src_root() 3 ;+ 4 ; Build mgunit docs. 5 ;- 6 pro mgunit_build_docs 7 compile_opt strictarr 8 9 root = mg_src_root() 4 10 5 idldoc, root=filepath('', subdir='src', root=root), $ 6 output=filepath('', subdir='api-docs', root=root), $ 7 /nosource, $ 8 title='MGunit documentation', subtitle='Unit testing for IDL', $ 9 /embed 10 11 exit 11 idldoc, root=filepath('', subdir='src', root=root), $ 12 output=filepath('', subdir='api-docs', root=root), $ 13 /nosource, $ 14 title='MGunit documentation', subtitle='Unit testing for IDL', $ 15 /embed 16 end
