RE: [CMake] improve the CMake language?

2007-11-05 Thread Sanchez, Juan
. I would think BSD type licensing and compactness would be more important. Juan -Original Message- From: [EMAIL PROTECTED] on behalf of Gonzalo Garramuño Sent: Mon 11/5/2007 4:55 PM To: Ken Martin; CMake ML; Sanchez, Juan Subject: Re: [CMake] improve the CMake language? Ken Martin

RE: [CMake] improve the CMake language?

2007-11-01 Thread Sanchez, Juan
Tcl is a nice language for implementing declarative commands. It can be easily built on about every platform out there, and the language rules are well known. It is small, and very easy to compile a standalone Tcl based interpreter with the CMake commands built in. The user would not need to

RE: [CMake] improve the CMake language?

2007-11-01 Thread Sanchez, Juan
-Original Message- From: Bill Hoffman [mailto:[EMAIL PROTECTED] Sent: Thu 11/1/2007 9:18 PM To: Sanchez, Juan Cc: Bill Hoffman; Brandon Van Every; cmake@cmake.org Subject: Re: [CMake] improve the CMake language? Sanchez, Juan wrote: Tcl is a nice language for implementing declarative

RE: [CMake] Nonstandard architectures.

2007-09-27 Thread Sanchez, Juan
If you want to check without actually compiling. There is the file command which can tell you about a shared library or any other file on your filesystem. ~ file /opt/firefox/libfreebl3.so /opt/firefox/libfreebl3.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), stripped ~

RE: [CMake] Creating a static lib from other static libs, HOW?

2007-09-17 Thread Sanchez, Juan
Could you post the link to the faq? I don't see which question covers the topic. Juan -Original Message- From: [EMAIL PROTECTED] on behalf of Brandon Van Every Sent: Mon 9/17/2007 1:10 AM To: cmake@cmake.org Subject: Re: [CMake] Creating a static lib from other static libs, HOW? On

RE: [CMake] Turning on warnings when compiling.

2007-08-28 Thread Sanchez, Juan
ADD_DEFINITIONS(-Wall) should work for both the gnu c and c++ compiler and other compilers supporting gnu option emulation. You can also do: make VERBOSE=1 on a unix system to see the commands being executed. Regards, Juan -Original Message- From: [EMAIL PROTECTED] on behalf of

RE: [CMake] -DCMAKE_C_COMPILER:string=g++

2007-08-08 Thread Sanchez, Juan
Note that many C/C++ compilers rely on the file extension to determine whether it should be processed using C or C++. I tested this a file with a simple function and with the following extensions on linux 32 bit and looked at the symbols using nm. For gcc -c .c unmangled .C mangled .cc