I am using Codelite on windows 64 bit and am getting the following message as below
I am adding the following linker libraries which is external as below in codelite as below
Following is the simple code I have written as below
#include <iostream>
#include <tc/emh.h>
#include <tc/tc.h>
#include <tc/tc_startup.h>
#include <tccore/aom.h>
#include <iostream>
#include <base_utils/IFail.hxx>
#include <base_utils/TcResultStatus.hxx>
#include <metaframework/BusinessObjectRegistry.hxx>
#include <metaframework/CreateInput.hxx>
#include <mld/logging/TcMainLogger.hxx>
#include <tccore/Item.hxx>
using namespace std;
using namespace Teamcenter;
using Teamcenter::Main::logger;
int ITK_user_main(int argc, char* argv[]){
cout<<"This is a test "<<endl;
return 0;
}
When I am compiling I am getting the following message as below.
C:\Windows\system32\cmd.exe /C D:/Programs/mingw-w64/mingw64/bin/mingw32-make.exe -j4 SHELL=cmd.exe -e -f Makefile "----------Building project:[ Test - Debug ]----------" mingw32-make.exe1: Entering directory 'C:/Users/Administrator/Documents/Documents/Test' D:/Programs/mingw-w64/mingw64/bin/g++.exe -o Debug/Test @"Test.txt" -L. -LD:\Siemens\TC12\TC_ROOT\lib -litk_main.obj D:/Programs/mingw-w64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -litk_main.obj collect2.exe: error: ld returned 1 exit status mingw32-make.exe1: *** [Test.mk:81: Debug/Test] Error 1 mingw32-make.exe1: Leaving directory 'C:/Users/Administrator/Documents/Documents/Test' mingw32-make.exe: *** [Makefile:5: All] Error 2 ====0 errors, 0 warnings====
Is there something that I am missing that the obj files are not found....