Can't get this to compile

Feb 2, 2013 at 3:55am
My library isn't getting located. I included it properly I thought, maybe someone else can figure out what the heck is going on. You can compile and check out the source code here.

https://compilr.com/codemaniak/inputassistant/iAssist.cpp
Feb 2, 2013 at 5:08am
Thats a cool little thing..
Feb 2, 2013 at 5:34am
That's a very neat website...

That warning about the #pragma once says that iAssist.h is in ..\lib\

Have you tried using that path instead? I'm not sure how this website works, and if it would let me I'd try it myself.

EDIT: It's the <> around #include <"iAssist.h"> . Get rid of them in both driver.cpp and iAssist.cpp.
Last edited on Feb 2, 2013 at 5:36am
Feb 2, 2013 at 6:46am
Thanks guys! I havn't had a chance to test the fixes quite yet because it's late and I need to get some rest, but I will comment tomorrow if I get everything working. I paid 20 bucks for a years worth of compiles on that site because it looked really legit and I needed cloud storage / compiling so it is definitely great for my purposes.
Feb 2, 2013 at 4:23pm
So looks like removing the <> from the include and also moving the .h file into the parent folder instead of into the 'libraries' folder was what was needed. Problem fixed, and I definitely HIGHLY recommend compilr.com if you need a cloud based compiler sort of thing.
Feb 2, 2013 at 4:27pm
Seeing as this has been marked as Solved. Is that site live? As-in, You can see other people editing the code.

I found a live site a while back:
http://collabedit.com/
Feb 3, 2013 at 7:09am
If its issue with way of including a header file, check this link to understand it:
http://www.questionscompiled.com/answer.jsp?qid=135&technology=cpp
Question:
What is difference between the following syntax:
#include <filename.h>
#include "filename.h"
Answer:
File inclusion can be done in the following 2 ways:
#include <filename.h>
#include "filename.h"
Topic archived. No new replies allowed.