home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / gamtlk11.zip / source.zip / BJCPP / BLACKJACK.ICC < prev    next >
Text File  |  1999-06-04  |  759b  |  21 lines

  1. option ProjectOptions = gen(rtti, "all"), macros(global, "yes")
  2. {
  3.    option  link(linkwithmultithreadlib), link(linkwithsharedlib),
  4.           incl(searchpath, "."), lang(nokeyword, "bool"), lang(nokeyword, "true"),
  5.           lang(nokeyword, "false"), define("IC_LANG_BOOL", 0), define("_X86_"),
  6.           define("IVB_IMPORT", "_Import"), link(pmtype, pm), link(debug)
  7.    {
  8.       target "BJack.exe"
  9.       {
  10.          source type(cpp) "Profile.CPP"
  11.          source type(cpp) "Blackjack.cpp"
  12.          source type(hpp) "Blackjack.h"
  13.          source type(hpp) "Blackjack.hpp"
  14.          source type(rc) "Blackjack.rc"
  15.          source type(cpp) "Command.cpp"
  16.          source type(cpp) "Hand.CPP"
  17.          source type(cpp) "Deck.CPP"
  18.       }
  19.    }
  20. }
  21.