home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / subconfig.tcl < prev    next >
Text File  |  1997-11-07  |  2KB  |  42 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. # Copyright (c) 1997 by Cayenne Software, Inc.
  4. #
  5. # This software is furnished under a license and may be used only in
  6. # accordance with the terms of such license and with the inclusion of
  7. # the above copyright notice. This software or any other copies thereof
  8. # may not be provided or otherwise made available to any other person.
  9. # No title to and ownership of the software is hereby transferred.
  10. #
  11. # The information in this software is subject to change without notice
  12. # and should not be construed as a commitment by Cayenne Software, Inc.
  13. #
  14. #---------------------------------------------------------------------------
  15. #
  16. #       File            : @(#)subconfig.tcl    /main/titanic/4 5 Sep 1997
  17. #       Original date   : Fri Sep  5 12:02:36 MET DST 1997
  18. #       Description     : Constraint satisfaction module configuration
  19. #              This file is used when "Configure C++" is used.
  20. #
  21. #---------------------------------------------------------------------------
  22.  
  23. source [m4_path_name tcl cginit.tcl]
  24. require "cpplibutl.tcl"
  25.  
  26. global thisModulesName
  27. set thisModulesName "cpp-constraint"
  28.  
  29. proc do_config {} {
  30.     set subdir [location [moduleBaseDir $thisModulesName] include]
  31.     set from [path_name concat $subdir ConstraintSections.hxx]
  32.     set to [fstorage::copyFile $from config include ConstraintSections.hxx]
  33.     if {$to != ""} {
  34.         puts "Copied $to"
  35.     } else {
  36.         puts "Unable to copy $from"
  37.     }
  38. }
  39.  
  40. puts "Configuring Constraint satisfaction"
  41. do_config
  42.