- Notifications
You must be signed in to change notification settings - Fork146
add postfix for different types of builds#80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
jaredgrubb commentedJun 24, 2017
I'm not experienced with cmake (one day I'll learn it), so I'd like to have someone volunteer to look at this? |
mitkof6 commentedJun 24, 2017
Hi@jaredgrubb. The set command assigns a value to the variable. The postfix variables are used when the library is build so you have something like this docopt_[d|r|rd|md].[lib|dll|so]. The mark_as advanced command hides the cache variable under the advanced option, which can be easily accessed and changed during configuration. Finally, when you install the library the different builds are distinguished by the postfix. Since you have correctly configured the install process a separate cmake target is constructed for each build type so that the library can find the corresponding files and link them correctly when used by a third party. |
Uh oh!
There was an error while loading.Please reload this page.
Currently when docopt is installed for different build types the last build overrides the libraries. This PR adds a default postfix based on the build type.
issue