Re: [CMake] Eclipse generator - scanner-discovered include pathsand pre-processor symbols

2011-03-27 Thread Alexander Neundorf
On Friday 25 March 2011, Chatterjee, Shash wrote:
> Hi Alex,
>
> >- CMakeFindEclipseCDT4.cmake : this is slightly changed version from the
> > one shipped with cmake 2.8.4, it produces debug output. Please replace
> > the CMakeFindEclipseCDT4.cmake in your cmake 2.8.4 installation with this
> > file. Then create a fresh and empty build directory, and let cmake run
> > there, with the same command line as you posted. Capture the output, both
> > stdout and stderr in a log file and post it here.
>
> Thanks for sending this, most illuminating :-)
>
> >I saw that you are using ccache, maybe this behaves slightly different for
> >some things ?
>
> I am using Fedora Core 14, with all latest yum updates.  I have not done
> anything knowingly for cmake to prefer ccache over gcc directly, so looks
> like by default cmake will use ccache over straight GCC if it finds it.  Of
> course, the speedup is most welcome.
>
> I have attached two versions of the log output.   The first one is with the
> problem reproduced.
>
> I noticed in your debug output that the C compiler was being detected as
> blank, and no C++ include directories were being found even though the
> compiler was detected as "GNU".  I changed the project definition in my
> CMakeLists.txt from "project ( eclipsetest CXX ) " to "project ( eclipstest
> C CXX ) " and everything worked as expected.

Ah, indeed, it was using CMAKE_C_COMPILER also when finding out the C++ stuff, 
which works, but only if CMAKE_C_COMPILER is actually set.
Please try the attached version, this should also work with your CXX-only 
project.
Let me know whether it works for you.

Thanks
Alex

#=
# Copyright 2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=
# (To distribute this file outside of CMake, substitute the full
#  License text for the above reference.)

# This file is included in CMakeSystemSpecificInformation.cmake if
# the Eclipse CDT4 extra generator has been selected.

FIND_PROGRAM(CMAKE_ECLIPSE_EXECUTABLE NAMES eclipse DOC "The Eclipse executable")

# This variable is used by the Eclipse generator and appended to the make invocation commands.
SET(CMAKE_ECLIPSE_MAKE_ARGUMENTS "" CACHE STRING "Additional command line arguments when Eclipse invokes make. Enter e.g. -j to get parallel builds")

# This variable is used by the Eclipse generator in out-of-source builds only.
SET(ECLIPSE_CDT4_GENERATE_SOURCE_PROJECT FALSE CACHE BOOL "If enabled, CMake will generate a source project for Eclipse in CMAKE_SOURCE_DIR")
MARK_AS_ADVANCED(ECLIPSE_CDT4_GENERATE_SOURCE_PROJECT)

# The Eclipse generator needs to know the standard include path
# so that Eclipse ca find the headers at runtime and parsing etc. works better
# This is done here by actually running gcc with the options so it prints its
# system include directories, which are parsed then and stored in the cache.
MACRO(_DETERMINE_GCC_SYSTEM_INCLUDE_DIRS _lang _resultIncludeDirs _resultDefines)
   message(STATUS "Getting include dirs for ${_lang} ...")
  SET(${_resultIncludeDirs})
  SET(_gccOutput)
  FILE(WRITE "${CMAKE_BINARY_DIR}/CMakeFiles/dummy" "\n" )

  IF (${_lang} STREQUAL "CXX")
SET(_compilerExecutable "${CMAKE_CXX_COMPILER}")
  ELSE (${_lang} STREQUAL "CXX")
SET(_compilerExecutable "${CMAKE_C_COMPILER}")
  ENDIF (${_lang} STREQUAL "CXX")
  EXECUTE_PROCESS(COMMAND ${_compilerExecutable} -v -E -x ${_lang} -dD dummy
  WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/CMakeFiles
  ERROR_VARIABLE _gccOutput
  OUTPUT_VARIABLE _gccStdout )
  FILE(REMOVE "${CMAKE_BINARY_DIR}/CMakeFiles/dummy")

  MESSAGE(STATUS "stderr: -${_gccOutput}-")
  MESSAGE(STATUS "stdout: -${_gccStdout}-")

  # First find the system include dirs:
  IF( "${_gccOutput}" MATCHES "> search starts here[^\n]+\n *(.+) *\n *End of (search) list" )

# split the output into lines and then remove leading and trailing spaces from each of them:
STRING(REGEX MATCHALL "[^\n]+\n" _includeLines "${CMAKE_MATCH_1}")
FOREACH(nextLine ${_includeLines})
  STRING(STRIP "${nextLine}" _includePath)
  LIST(APPEND ${_resultIncludeDirs} "${_includePath}")
ENDFOREACH(nextLine)

  ENDIF( "${_gccOutput}" MATCHES "> search starts here[^\n]+\n *(.+) *\n *End of (search) list" )


  # now find the builtin macros:
  STRING(REGEX MATCHALL "#define[^\n]+\n" _defineLines "${_gccStdout}")
# A few example lines which the regexp below has to match properly:
#  #define   MAX(a,b) ((a) > (b) ? (a) : (b))
#  #define __fastcall __attribute__((__fastcall__))
#  #define   FOO (23)
#  #define __UINTMAX_TYPE__ l

Re: [CMake] Build problem : beginner

2011-03-27 Thread Martin O'Brien
I can't say for certain without seeing all of it, but it sure doesn't look
like there's any source code there, so I would assume that it's a binary
distribution.

Either way, those '*.cmake' files aren't what cmake uses directly to build
things.  You would need a 'CMakeLists.txt' file, which probably includes
those other files somehow.


Good luck,

mm

-Original Message-
From: cmake-boun...@cmake.org [mailto:cmake-boun...@cmake.org] On Behalf Of
TomGratte
Sent: Saturday, March 26, 2011 7:30 PM
To: cmake@cmake.org
Subject: [CMake] Build problem : beginner

Hello, 

I'm a beginner with cmake, and I did not find answers whether in the cmake
documentation or in the archive of the mailing list. 

I run a Ubuntu 64 bits and want to use a program.

I've downloaded the .tar.gz file, then extracted it. The structure of the
extracted files is : 

usr/local/ ->

bin/, include/, lib64/, share/

- In bin/, there are executable files.
- In include/, there are .h files.
- In lib64, I have : 
.:
cmtk

./cmtk:
cmtk
lib
libcmtkBase.a
libcmtkGPU.a
libcmtkIO.a
libcmtkNumerics.a
libcmtkPipeline.a
libcmtkQt.a
libcmtkRecon.a
libcmtkRegistration.a
libcmtkSegmentation.a
libcmtksqlite3.a
libcmtkSystem.a
libD4CMTK.a
libmxml.a
libNrrdIO.a

./cmtk/cmtk:
CMTKConfig.cmake

./cmtk/lib:
CMTKLibraryDepends.cmake
UseCMTK.cmake

- And in share/, some documentation. 

I tried to use cmake on the .cmake files, but it does not work. What should
I do to be able to use this software ? Is it already built ? Why is there
not a CMakeLists.txt file in the file I've downloaded ? It must be stupid
questions, that is why feel free to redirect me to a helpful tutorial if you
think I need some. 

(the software I try to use  http://www.nitrc.org/projects/cmtk/ link )

Thank you

Best Regards, 

Tom

--
View this message in context:
http://cmake.3232098.n2.nabble.com/Build-problem-beginner-tp6211511p6211511.
html
Sent from the CMake mailing list archive at Nabble.com.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at:
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake