libquickmail - compiling errorIs there a way to copy the file paths of ALL active windows' opened files? (for...
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
What do you call someone who asks many questions?
Why is the 'in' operator throwing an error with a string literal instead of logging false?
What exploit are these user agents trying to use?
A reference to a well-known characterization of scattered compact spaces
How is it possible to have an ability score that is less than 3?
Is the Joker left-handed?
How can I tell someone that I want to be his or her friend?
Is Lorentz symmetry broken if SUSY is broken?
Do I have a twin with permutated remainders?
Would Slavery Reparations be considered Bills of Attainder and hence Illegal?
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
How to say in German "enjoying home comforts"
I'm flying to France today and my passport expires in less than 2 months
I would say: "You are another teacher", but she is a woman and I am a man
What is the intuition behind short exact sequences of groups; in particular, what is the intuition behind group extensions?
I Accidentally Deleted a Stock Terminal Theme
Why does Kotter return in Welcome Back Kotter
Fully-Firstable Anagram Sets
Doing something right before you need it - expression for this?
Can I ask the recruiters in my resume to put the reason why I am rejected?
What's the difference between 'rename' and 'mv'?
Is "remove commented out code" correct English?
Brothers & sisters
libquickmail - compiling error
Is there a way to copy the file paths of ALL active windows' opened files? (for saving and restoring your Windows session across a restart)Is there anyway in which I don't need to specify the linker when compiling?running app in anjuta gives me **Error**: You must have `glib' installedError compiling unittest++Compiling this (C++) git repository codeerror installing cmder, which visual c++ redistributable do you suggest?DEV C++ : No error while compiling any program but it is not runningError while compiling with 'g++' using 'NPPExec' plugin with Notepad++C++ Program Compiling Error on Windows using MinGW32 bit compiler with Scons returns that a C++ Header file is MissingUninstall GCC, C++ compiler and libraries once compiling completes
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
im trying to send some Mails through a c++ program.
Somebody recommended the libquickmail library.
But i think i dont really get it.. First i thought its a command-line only lib but isnt there a way to use it in my c++ Programm?
I put the quickmail.h include file in my directory and included it in my cpp file. In addition to that i put the libquickmail-0.dll the libquickmaillight-0.dll and the quickmail.exe in my folder aswell.
But whenever i try to compile the main file i get the fatal error that "smtpsocket.cpp" and quickmail.cpp are missing. But i dont include it anywhere! So why cant i just use the dll. Shouldnt it be compilable without these files?
Thanks for your help.
oh and btw im using windows, not linux... There are a few .a lib files,but sadly no quickmail.lib or something similar
c++ visual-c++
New contributor
add a comment |
im trying to send some Mails through a c++ program.
Somebody recommended the libquickmail library.
But i think i dont really get it.. First i thought its a command-line only lib but isnt there a way to use it in my c++ Programm?
I put the quickmail.h include file in my directory and included it in my cpp file. In addition to that i put the libquickmail-0.dll the libquickmaillight-0.dll and the quickmail.exe in my folder aswell.
But whenever i try to compile the main file i get the fatal error that "smtpsocket.cpp" and quickmail.cpp are missing. But i dont include it anywhere! So why cant i just use the dll. Shouldnt it be compilable without these files?
Thanks for your help.
oh and btw im using windows, not linux... There are a few .a lib files,but sadly no quickmail.lib or something similar
c++ visual-c++
New contributor
add a comment |
im trying to send some Mails through a c++ program.
Somebody recommended the libquickmail library.
But i think i dont really get it.. First i thought its a command-line only lib but isnt there a way to use it in my c++ Programm?
I put the quickmail.h include file in my directory and included it in my cpp file. In addition to that i put the libquickmail-0.dll the libquickmaillight-0.dll and the quickmail.exe in my folder aswell.
But whenever i try to compile the main file i get the fatal error that "smtpsocket.cpp" and quickmail.cpp are missing. But i dont include it anywhere! So why cant i just use the dll. Shouldnt it be compilable without these files?
Thanks for your help.
oh and btw im using windows, not linux... There are a few .a lib files,but sadly no quickmail.lib or something similar
c++ visual-c++
New contributor
im trying to send some Mails through a c++ program.
Somebody recommended the libquickmail library.
But i think i dont really get it.. First i thought its a command-line only lib but isnt there a way to use it in my c++ Programm?
I put the quickmail.h include file in my directory and included it in my cpp file. In addition to that i put the libquickmail-0.dll the libquickmaillight-0.dll and the quickmail.exe in my folder aswell.
But whenever i try to compile the main file i get the fatal error that "smtpsocket.cpp" and quickmail.cpp are missing. But i dont include it anywhere! So why cant i just use the dll. Shouldnt it be compilable without these files?
Thanks for your help.
oh and btw im using windows, not linux... There are a few .a lib files,but sadly no quickmail.lib or something similar
c++ visual-c++
c++ visual-c++
New contributor
New contributor
New contributor
asked 10 hours ago
trogandatroganda
1
1
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Try this:
1. Go to Project -> Project properties -> Configuration Properties -> Linker -> Additional Library Directories
This field is where linker will look for your .dll files. Add the path to your .dll files there.
2. Make sure you have selected under configuration "all configurations" otherwise you might get linking error when trying to compile in different mode that what you are currentlly running on. And select all platforms as well. Those two options are at the top of the window under project property pages.
3. Go to configuration properties -> Linker -> Input -> Additional Dependencies
Here you should append the names of the .dlls that are currentlly missing. Make sure that you don't delete what's there now.
4. Compile and link your project.
If you get any error, update your post with error message from the output window.
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
troganda is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1421473%2flibquickmail-compiling-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try this:
1. Go to Project -> Project properties -> Configuration Properties -> Linker -> Additional Library Directories
This field is where linker will look for your .dll files. Add the path to your .dll files there.
2. Make sure you have selected under configuration "all configurations" otherwise you might get linking error when trying to compile in different mode that what you are currentlly running on. And select all platforms as well. Those two options are at the top of the window under project property pages.
3. Go to configuration properties -> Linker -> Input -> Additional Dependencies
Here you should append the names of the .dlls that are currentlly missing. Make sure that you don't delete what's there now.
4. Compile and link your project.
If you get any error, update your post with error message from the output window.
New contributor
add a comment |
Try this:
1. Go to Project -> Project properties -> Configuration Properties -> Linker -> Additional Library Directories
This field is where linker will look for your .dll files. Add the path to your .dll files there.
2. Make sure you have selected under configuration "all configurations" otherwise you might get linking error when trying to compile in different mode that what you are currentlly running on. And select all platforms as well. Those two options are at the top of the window under project property pages.
3. Go to configuration properties -> Linker -> Input -> Additional Dependencies
Here you should append the names of the .dlls that are currentlly missing. Make sure that you don't delete what's there now.
4. Compile and link your project.
If you get any error, update your post with error message from the output window.
New contributor
add a comment |
Try this:
1. Go to Project -> Project properties -> Configuration Properties -> Linker -> Additional Library Directories
This field is where linker will look for your .dll files. Add the path to your .dll files there.
2. Make sure you have selected under configuration "all configurations" otherwise you might get linking error when trying to compile in different mode that what you are currentlly running on. And select all platforms as well. Those two options are at the top of the window under project property pages.
3. Go to configuration properties -> Linker -> Input -> Additional Dependencies
Here you should append the names of the .dlls that are currentlly missing. Make sure that you don't delete what's there now.
4. Compile and link your project.
If you get any error, update your post with error message from the output window.
New contributor
Try this:
1. Go to Project -> Project properties -> Configuration Properties -> Linker -> Additional Library Directories
This field is where linker will look for your .dll files. Add the path to your .dll files there.
2. Make sure you have selected under configuration "all configurations" otherwise you might get linking error when trying to compile in different mode that what you are currentlly running on. And select all platforms as well. Those two options are at the top of the window under project property pages.
3. Go to configuration properties -> Linker -> Input -> Additional Dependencies
Here you should append the names of the .dlls that are currentlly missing. Make sure that you don't delete what's there now.
4. Compile and link your project.
If you get any error, update your post with error message from the output window.
New contributor
New contributor
answered 10 hours ago
Pavel SkipenesPavel Skipenes
12
12
New contributor
New contributor
add a comment |
add a comment |
troganda is a new contributor. Be nice, and check out our Code of Conduct.
troganda is a new contributor. Be nice, and check out our Code of Conduct.
troganda is a new contributor. Be nice, and check out our Code of Conduct.
troganda is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1421473%2flibquickmail-compiling-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown