[CMake] CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND...

2007-03-25 Thread Patrick Gelin
Hi, this is my problem: [EMAIL PROTECTED]:~/Desktop/lilidab$ cmake . -- Check for working CXX compiler: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND CMake Error: your CXX compiler: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND was not found.   Please set CMAKE_CXX_COMPILER to a valid compiler path or name. CMake

Re: [CMake] Re: FindSDL.cmake and mingw / msys

2007-03-25 Thread PA Galmes
On 3/24/07, E. Wing [EMAIL PROTECTED] wrote: The SDL_LIBRARY_TEMP solution comes from something I think Bill suggested to me. It seemed to work cleaner than the above solutions, but I overlooked the fact that SDL_LIBRARY_TEMP must be set before SDL_LIBRARY is created. Still, all-in-all, I

Re: [CMake] Problem using cmake with mingw

2007-03-25 Thread Bill Hoffman
Hendrik Sattler wrote: Am Samstag 24 März 2007 20:29 schrieb Christian Ehrlicher: But the log shows another problem - mingw can not use MS PSDK headers. That's not completely true. For some particular headers that have things that mingw does not provide (e.g. the bluetooth stuff),

Re: [CMake] CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND...

2007-03-25 Thread Bill Hoffman
Patrick Gelin wrote: Hi, this is my problem: [EMAIL PROTECTED]:~/Desktop/lilidab$ cmake . -- Check for working CXX compiler: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND CMake Error: your CXX compiler: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND was not found. Please set CMAKE_CXX_COMPILER to a valid

[CMake] Re: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND...

2007-03-25 Thread Patrick Gelin
Bill Hoffman wrote: Patrick Gelin wrote: Hi, this is my problem: [EMAIL PROTECTED]:~/Desktop/lilidab$ cmake . -- Check for working CXX compiler: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND CMake Error: your CXX compiler: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND was not found. Please set

Re: [CMake] Re: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND...

2007-03-25 Thread Bill Hoffman
Patrick Gelin wrote: Hello Bill, I don't think so because the comand below show that gcc and g++ exist like this: [EMAIL PROTECTED]:~$ gcc --version gcc (GCC) 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5) Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the

[CMake] Re: Re: CMAKE_CXX_COMPILER_FULLPATH-NOTFOUND...

2007-03-25 Thread Patrick Gelin
In this case it should work.Can you create a small cmake test file: CMakeLists.txt:--- add_library(foo foo.c) --end CMakeLists.txt- put that in a directory by itself. Then do this: touch foo.c mkdir b cd b cmake .. And post all the output. it's ok... [EMAIL

[CMake] FindModules vs EXEC_PROGRAM

2007-03-25 Thread Stephen Adler
CMake folks... I'm setting up a project using vxWidget and cmake. I've run across a configuration dilema. I've followed the instructions on how to use the wxWidgets file module .cmake as found in ${CMAKE_ROOT}/Modules/FindwxWidgets.cmake, but it does not seem to find my wxWidget install. (My

Re: [CMake] CMake and Ctest and CppUnit

2007-03-25 Thread BigWave
Hi Pascal, wow, thank you for your response - that helped a lot! After some struggles, I got it to register one test, and to execute it. Great. But, if I add two tests, both get registered, but only one gets executed ... therefore twice though. I hope someone can tell me what I am doing

Re: [CMake] FindModules vs EXEC_PROGRAM

2007-03-25 Thread Werner Smekal
Hi Stephen, the module should work without problems for Linux as long as (the correct) wx-config is in the path environment variable. The module does practically the same as you do with EXEC_PROGRAM. So if you CMakeLists.txt works, the wxWidgets cmake module should also work. Find the