Click here to Skip to main content
15,902,854 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generaladd-in problem Pin
Y. Hirsch3-Oct-00 8:58
Y. Hirsch3-Oct-00 8:58 
GeneralRe: add-in problem Pin
Michael Dunn4-Oct-00 5:39
sitebuilderMichael Dunn4-Oct-00 5:39 
GeneralRe: add-in problem Pin
Erik Funkenbusch4-Oct-00 13:04
Erik Funkenbusch4-Oct-00 13:04 
GeneralScreen Capture Pin
Larry3-Oct-00 6:39
Larry3-Oct-00 6:39 
GeneralScreen Capture Pin
loh3-Oct-00 6:39
loh3-Oct-00 6:39 
GeneralRe: Screen Capture Pin
Sam Hobbs3-Oct-00 8:17
Sam Hobbs3-Oct-00 8:17 
GeneralMultiple configurations and dependencies Pin
Alex Harford3-Oct-00 6:38
sussAlex Harford3-Oct-00 6:38 
GeneralRe: Multiple configurations and dependencies Pin
Tim Deveaux3-Oct-00 11:35
Tim Deveaux3-Oct-00 11:35 
Hmmm... this shouldn't be happening.

I took an existing dsw with a couple of projects, and set a dependency of one project (Pro1) to another (NewSMTPSample) - as shown here in the exported make file:

!IF  "$(CFG)" == "Pro1 - Win32 Release"
 
"NewSMTPSample - Win32 Release" : 
   cd "\Develop(Tim)\NewSMTPSample"
   $(MAKE) /$(MAKEFLAGS) /F ".\NewSMTPSample.mak" CFG="NewSMTPSample - Win32 Release" 
   cd "..\Pro1"
 
"NewSMTPSample - Win32 ReleaseCLEAN" : 
   cd "\Develop(Tim)\NewSMTPSample"
   $(MAKE) /$(MAKEFLAGS) /F ".\NewSMTPSample.mak" CFG="NewSMTPSample - Win32 Release" RECURSE=1 CLEAN 
   cd "..\Pro1"
 
!ELSEIF  "$(CFG)" == "Pro1 - Win32 Debug"
 
"NewSMTPSample - Win32 Debug" : 
   cd "\Develop(Tim)\NewSMTPSample"
   $(MAKE) /$(MAKEFLAGS) /F ".\NewSMTPSample.mak" CFG="NewSMTPSample - Win32 Debug" 
   cd "..\Pro1"
 
"NewSMTPSample - Win32 DebugCLEAN" : 
   cd "\Develop(Tim)\NewSMTPSample"
   $(MAKE) /$(MAKEFLAGS) /F ".\NewSMTPSample.mak" CFG="NewSMTPSample - Win32 Debug" RECURSE=1 CLEAN 
   cd "..\Pro1"
!ENDIF 


As you can see, it should detect the build settings and select the corresponding build of the dependency. I suspect its because there is no UNICODE build that things get messed up. Export the makefile and have a look. You can probably edit it to achieve the desired results.
GeneralTIMER API Pin
xiaowei3-Oct-00 6:35
xiaowei3-Oct-00 6:35 
GeneralRe: TIMER API Pin
Serge Velikevitch3-Oct-00 9:38
sussSerge Velikevitch3-Oct-00 9:38 
GeneralRe: TIMER API Pin
Larry7-Oct-00 9:18
Larry7-Oct-00 9:18 
GeneralRe: TIMER API Pin
Erik Funkenbusch4-Oct-00 13:08
Erik Funkenbusch4-Oct-00 13:08 
GeneralNon Owner-Draw Button Color Pin
gc3-Oct-00 5:47
gc3-Oct-00 5:47 
GeneralRe: Non Owner-Draw Button Color Pin
Erik Funkenbusch4-Oct-00 13:09
Erik Funkenbusch4-Oct-00 13:09 
GeneralPush Button Color Pin
gc3-Oct-00 4:45
gc3-Oct-00 4:45 
GeneralRe: Push Button Color Pin
Roger3-Oct-00 4:47
Roger3-Oct-00 4:47 
GeneralReally Desperate Spy Modification Pin
Larry3-Oct-00 4:45
Larry3-Oct-00 4:45 
GeneralCase Sensetive ComboBox Selection Pin
nogga3-Oct-00 3:52
nogga3-Oct-00 3:52 
GeneralSTL and dynamic objects Pin
JoJo3-Oct-00 2:47
JoJo3-Oct-00 2:47 
GeneralRe: STL and dynamic objects Pin
Erik Funkenbusch4-Oct-00 13:11
Erik Funkenbusch4-Oct-00 13:11 
GeneralSending data in separate TCP packets using Visual C++ Pin
Sergei2-Oct-00 21:42
Sergei2-Oct-00 21:42 
GeneralRe: Sending data in separate TCP packets using Visual C++ Pin
Member 12089653-Oct-00 4:58
Member 12089653-Oct-00 4:58 
GeneralRe: Sending data in separate TCP packets using Visual C++ Pin
Erik Funkenbusch4-Oct-00 13:16
Erik Funkenbusch4-Oct-00 13:16 
GeneralSEH problem in release mode Pin
Robin2-Oct-00 18:26
Robin2-Oct-00 18:26 
GeneralRe: SEH problem in release mode Pin
Feng Yuan2-Oct-00 19:38
Feng Yuan2-Oct-00 19:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.