Author Topic: CodeBlock does't detect non main source file  (Read 6093 times)

Offline reemassam14

  • Single posting newcomer
  • *
  • Posts: 2
CodeBlock does't detect non main source file
« on: April 26, 2015, 06:15:54 am »
I build 3 files main.cpp , head.h and head.cpp.


main.cpp===>>

#include <iostream>
#include "head.h"
using namespace std;

int main()
{
show();
return 0;
}


head.h===>>

#ifndef HEAD_H_INCLUDED
#define HEAD_H_INCLUDED

void show();

#endif // HEAD_H_INCLUDED


head.cpp===>

#include <iostream>
#include "head.h"
using std::cout;

void show()
{
cout<<"Hello world!!";
}
-----------------------------------------------------------------------------
simple program to illustrate my problem. Whenever i run this program i get an error saying
in function main undefine refernce to show()
--------------------------------------------------------------------------
any solution to configure my CodeBlock..
--------------------------------------------------------------------------
it is working only when i include head.cpp in head.h . and i don't want to do that .plzzz help

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: CodeBlock does't detect non main source file
« Reply #1 on: April 26, 2015, 06:25:37 am »
Create a project, add all files, hit compile. Don't do a single file compilation. Inspect the C::B manual to see how to do so.

Next time, please don't do multiple posts with the same content. I've removed the other.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline reemassam14

  • Single posting newcomer
  • *
  • Posts: 2
Re: CodeBlock does't detect non main source file
« Reply #2 on: April 26, 2015, 07:13:01 am »
Still not working... same error in main undefine refence to show()

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: CodeBlock does't detect non main source file
« Reply #3 on: April 26, 2015, 08:59:17 am »
Sorry, but I cannot believe this.
I've attached the project that works just fine.

Next time, please be more clear what EXACTLY you do, on what platform, what version, what compiler etc...
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ