Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cdt-dev] how to find the build.xml script that eclipse generates?

It seems that what you need is headless build of CDT projects. You can
look at the bugzilla entry for more details: 
https://bugs.eclipse.org/bugs/show_bug.cgi?id=186847

Teo

-----Original Message-----
From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-bounces@xxxxxxxxxxx]
On Behalf Of sorin
Sent: Wednesday, September 16, 2009 4:29 PM
To: cdt-dev@xxxxxxxxxxx
Subject: [cdt-dev] how to find the build.xml script that eclipse
generates?



 Hello all!
 
 
 We inherited a C++ project in the form of about 30 C++ individual
sub-projects, linked between them  Our goal is to build the binaires
(DLL's) from this project, which are about 15.
 How we did was to import all these 30 projects in Eclipse and then
  set

 Eclipse paths
-------------

Window->Preferences...
C/C++
PathEntry Variables
New...

windows:
  LIB_RELEASE              lib
  BIN_RELEASE              bin

and
Eclipse environment variables
-----------------------------

Window->Preferences...
C/C++
Managed Build
Environment
User Variables
New

windows:
  COPY                  copy
  EXE_EXTENSION         exe
  DLL_EXTENSION         dll
  JNI_EXTENSION         dll
  GCC_ARCHIVER_COMMAND  ar
  GCC_ARCHIVER_FLAGS    -r
  WINSOCKSLIB           ws2_32
  LIB_PDIR              pdir
  LIB_MINGW32           mingw32
  JNI_LINKER_FLAGS      -Wl,--add-stdcall-alias

We used mingw

We issued a Clean/Build All command from Eclipse's menu and the dll's we
were interested in were placed in the bin folder.
 I was wondering if there is any way we can find the build.xml file
which Eclipse runs when we issue the "Build all" command. Is any way
that we can obtain a generated by Eclipse script that we can run later
independently from a comand line and build the dll's?

 Thank you very much
 With best regards,
 Sorin

--
View this message in context:
http://www.nabble.com/how-to-find-the-build.xml-script-that-eclipse-gene
rates--tp25469554p25469554.html
Sent from the Eclipse CDT - Development mailing list archive at
Nabble.com.

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev



Back to the top