Changeset 55e44d4 in nscp for bjam


Ignore:
Timestamp:
10/04/09 23:40:03 (4 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2, stable
Children:
2e8b33f
Parents:
1fc246c
Message:

Added new command: assert which causes program to assert (and "crash") which I will use to test the debug builds.
Also reworked the build scripts to work better and such

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bjam/zip.jam

    r1d53fe0 r55e44d4  
    55 
    66feature source-folder : : path free ; 
     7feature exclude : : free ; 
     8feature recursive : off on : propagated ; 
    79 
    810type.register ZIP : zip ; 
    911generators.register-composing bjam/zip.make-zip : : ZIP ; 
    1012flags bjam/zip.make-zip SOURCE_FOLDER <source-folder> ; 
     13flags bjam/zip.make-zip EXCLUDES <exclude> : -x ; 
     14flags bjam/zip.make-zip FLAGS <recursive>on : -r ; 
    1115 
    1216actions make-zip { 
    13   echo 7z.exe a -tzip -bd "$(<)" "$(SOURCE_FOLDER)" 
    14   7z.exe a -tzip -bd "$(<)" "$(SOURCE_FOLDER)" 
     17  echo 7z.exe a -tzip -bd "$(<)" "$(FLAGS)" "$(SOURCE_FOLDER)" "-x!$(EXCLUDES)" 
     18  7z.exe a -tzip -bd "$(<)" "$(FLAGS)" "$(SOURCE_FOLDER)" "-x!$(EXCLUDES)" 
    1519}  
Note: See TracChangeset for help on using the changeset viewer.