]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/vc6app.t
give focus to show top level windows
[wxWidgets.git] / distrib / msw / tmake / vc6app.t
index b5bdeae14284daf8a42a75d5085ea7b8bf3efd89..d16d0fd716d44a71832ffc6c05a85633226dd91b 100644 (file)
     if ( Config("wx") && !Config("wxbase") ) {
        Project('CONFIG += windows');
     }
-    if ( Config("wx") ) {
-       if ( Config("wxnodir") ) {
-           #! hard code relative paths
-           $WXDIR = "..\\..";
-       }
-       else {
-           #! VC 6.0 supports env vars in include path
-           $WXDIR = "\$(WXWIN)";
-       }
-
-       AddIncludePath("$WXDIR\\include");
-    }
 
     #! let's be smart: if no extension is given, add .lib (this allows for
     #! LIBS=libname in project files which map either to -l libname.lib under
     }
 
     if ( Config("wx") ) {
+       #! default rel path works for all the demos and most of the samples
+       #! if no explicit path given
+       $WXDIR = Project("WXDIR") || "..\\..";
+
+       AddIncludePath("$WXDIR\\include");
+
        if ( !Project('WXCONFIGS') ) {
            #! default value
            Project('WXCONFIGS = Debug Release DebugDll ReleaseDll');