Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Configurations - Libraries

lklawrie
Beginner
433 Views
How does one have multiple configurations (Debug, Release) and use different libraries (personally built) for the different configurations?

I have added the basic libraries to the project, but it keeps the one last added for both configurations.

Where do I add so that they can be different (debug for debug, release for release)

Linda
0 Kudos
2 Replies
Jugoslav_Dujic
Valued Contributor II
433 Views
Do not add them to the project. Instead, do one of the following:

1) Add them to Project settings/Linker/Input/Additional dependencies, preferrably in relative path e.g. ../../MyLibraries/Foo/Foo.lib

2) If the foo.lib and the project bar.exe are in the same solution, just go to Project/Project Dependencies and specify that Bar depends on Foo.

0 Kudos
lklawrie
Beginner
433 Views
Thanks, I'll try that.

Linda

0 Kudos
Reply