]> git.saurik.com Git - wxWidgets.git/commitdiff
examples of customizing VC++ project files
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 31 Jul 2003 11:44:03 +0000 (11:44 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 31 Jul 2003 11:44:03 +0000 (11:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/tech/tn0016.txt

index 86ddfccf2d31f7d938ca2d66c5e049a075258694..076c3340246a34abf8447c653249c676e92aaae8 100644 (file)
@@ -37,6 +37,22 @@ IMPORTANT NOTE: Don't forget to run autoconf in wxWindows root directory if
                 in .bkl files! You will know that this happened if
                 $(wx)/autoconf_inc.m4 content changed.
 
+You can use Bakefile to generate makefiles or projects customized to your
+needs, too. See Makefile for details on bakefile commands used to generate
+makefiles. For example, you can use this command to generate VC++ project
+files without wxUniversal configurations:
+    bakefile -v -fmsvc6prj -o../wxmy.dsw -DRUNTIME_LIBS=dynamic
+             -DOFFICIAL_BUILD=0 -DUSE_HTML=1 -DUSE_OPENGL=1
+             -DMONOLITHIC=0 -DUSE_GUI=1 -DWXUNIV=0 wx.bkl
+Or monolithic instead of multilib (the default):
+    bakefile -v -fmsvc6prj -o../wxmono.dsw -DRUNTIME_LIBS=dynamic
+             -DOFFICIAL_BUILD=0 -DUSE_HTML=1 -DUSE_OPENGL=1
+             -DMONOLITHIC=1 -DUSE_GUI=1 wx.bkl
+Or monolithic wxBase:
+    bakefile -v -fmsvc6prj -o../wxBase.dsw -DRUNTIME_LIBS=dynamic
+             -DOFFICIAL_BUILD=0 -DUSE_HTML=0 -DUSE_OPENGL=0
+             -DMONOLITHIC=1 -DUSE_GUI=0 wx.bkl
+
 
 2. Bakefile files organization
 ------------------------------