Re: [CMake] Finding cyclic dependency that trigger re-execution

2008-07-24 Thread Filipe Sousa
or not but there is the --graphviz option that generates dependencies between targets. -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] FOSDEM Talk on CMake is available

2008-04-03 Thread Filipe Sousa
Alexander Neundorf wrote: On Thursday 03 April 2008, Alan W. Irwin wrote: One prinicipal problem I see with pkg-config is that it is intended to be used in such a way that the stdout is directly used as command line arguments for the compiler. E.g. instead of a list of include directories it

Re: [CMake] CMake 2.6.0 RC 6 ready for testing

2008-04-02 Thread Filipe Sousa
You can close this http://public.kitware.com/Bug/view.php?id=6566 Bill Hoffman wrote: I am happy to announce that CMake 2.6.0 RC6 is ready for testing. You can find the source and binaries here: http://www.cmake.org/files/v2.6/. signature.asc Description: OpenPGP digital signature

Re: [CMake] [CPACK] debian package

2008-03-31 Thread Filipe Sousa
Mathieu Malaterre wrote: On Mon, Mar 31, 2008 at 1:44 AM, Filipe Sousa [EMAIL PROTECTED] wrote: Philip Lowman wrote: On Fri, Mar 28, 2008 at 11:53 AM, Bill Hoffman [EMAIL PROTECTED] wrote: Sounds like this checkin fixes this bug http://public.kitware.com/Bug/view.php?id=6566

Re: [CMake] [CPACK] debian package

2008-03-30 Thread Filipe Sousa
Philip Lowman wrote: On Fri, Mar 28, 2008 at 11:53 AM, Bill Hoffman [EMAIL PROTECTED] wrote: Sounds like this checkin fixes this bug http://public.kitware.com/Bug/view.php?id=6566 and now there is another one: sudo dpkg -i cmake-2.7.20080330-Linux-x86_64.deb dpkg: error processing

Re: [CMake] Overriding SET_TARGET_PROPERTIES from the command line

2008-03-28 Thread Filipe Sousa
Pau Garcia i Quiles wrote: Hello, From the command-line, cmake -DVARIABLE:TYPE=VALUE is equivalent to SET( VARIABLE VALUE ). -DVARIABLE:TYPE=VALUE is equivalent to set(VARIABLE VALUE CACHE TYPE ...). The equivalent to SET( VARIABLE VALUE ) is -DVARIABLE=VALUE Is there any such

Re: [CMake] A doubt about macros, relative paths and long args

2008-03-27 Thread Filipe Sousa
Leopold Palomo Avellaneda wrote: Hi again, please, how can I pass an EXACT string to a ARGS command in a custom command? VERBATIM add_custom_command(OUTPUT output1 [output2 ...] COMMAND command1 [ARGS] [args1...] [COMMAND command2

Re: [CMake] Obtaining improved GNU make performance on Makefiles generated by cmake

2008-03-26 Thread Filipe Sousa
Bill Hoffman wrote: Filipe Sousa wrote: Is that 6 minutes?? The test is to run make in a tree that has everything already built. We not trying to measure the speed of the compiler but rather the speed of make checking the depend information. Oops! There you go *cmake version 2.7

Re: [CMake] Obtaining improved GNU make performance on Makefiles generated by cmake

2008-03-25 Thread Filipe Sousa
Alan W. Irwin wrote: On 2008-03-25 14:28-0400 Bill Hoffman wrote: --- build all of paraview with nothing needing a build: 2.6 make 15.21s user 5.55s system 74% cpu 28.049 total make 15.44s user 5.35s system 98% cpu 21.073 total make -j5 real6m13.039s user20m42.308s sys

Re: [CMake] Sebastian Barre's private flames

2008-03-04 Thread Filipe Sousa
Private mails should remain private. Brandon Van Every wrote: Ok, I think it's time to call the private behavior of Kitware employee Sebastian Barre to the attention of the list. I've repeatedly asked him to stop sending me private e-mail flames, and he simply will not do it. This is the 3rd

[CMake] CMake, Java and JARs

2008-03-03 Thread Filipe Sousa
I'm new to java, so I might be doing something wrong. Here is the CMakeLists.txt: project(suplemento Java) set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) find_package(GWT) add_library(suplemento src/pt/ipb/client/Suplemento.java) target_link_libraries(suplemento ${GWT_LIBRARIES}) The

Re: [CMake] Detecting linux distro?

2008-03-03 Thread Filipe Sousa
Kedzierski, Artur CIV NSWC Corona, PA53 wrote: I had to do that too. I ended up going by distribution-specific file in /etc. For example, Red Hat: /etc/redhat-release Slackware: /etc/slackware-version Slamd64: /etc/slamd64-version Gentoo: /etc/gentoo-release signature.asc

Re: [CMake] Re: function and raise_scope commands (+ unset bug)

2008-02-16 Thread Filipe Sousa
Sebastien BARRE wrote: OK, back to PARENT_SCOPE. Well, Tcl/Tk has 'upvar' (which RAISE_SCOPE was inspired from), *and* 'global', which would pretty much declare variables inside a procedure/function to be of the global scope nature. I don't really like any of them. If I had to give a (crazy)

Re: [CMake] EXECUTABLE_OUTPUT_PATH vs CMAKE_RUNTIME_OUTPUT_DIRECTORY

2008-02-13 Thread Filipe Sousa
Philip Lowman wrote: Filipe Sousa wrote: I have been using EXECUTABLE_OUTPUT_PATH but I recently found that CMAKE_RUNTIME_OUTPUT_DIRECTORY can do the same. Is EXECUTABLE_OUTPUT_PATH going to be deprecated in 2.6? Does CMAKE_RUNTIME_OUTPUT_DIRECTORY affect where .EXE files get placed or only

Re: [CMake] Test for if a macro defined

2008-02-09 Thread Filipe Sousa
James Bigler wrote: Is there an expression similar to the one for variables to determine if a macro is defined? MACRO(TEST) MESSAGE(TEST is defined) ENDMACRO(TEST) IF(DEFINED TEST) TEST() ELSE(DEFINED TEST) MESSAGE(TEST is not defined) ENDIF(DEFINED TEST) I don't think there is but

Re: [CMake] how to INSTALL linux custom kernel module?

2008-02-05 Thread Filipe Sousa
Christopher Lang wrote: Hi, what is the best way to INSTALL a custom kernel module that needs execution of some script (like update-modules or depmod) after installation? If somebody could point me in the direction of an example would be nice. install([[SCRIPT file] [CODE code]] [...])

Re: [CMake] return and break commands

2008-01-23 Thread Filipe Sousa
Ken Martin wrote: Incomplete cvs update maybe or locally edited files? cmSetProperty looks my fault, sorry. signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Re: FindBoost.cmake: please test

2008-01-21 Thread Filipe Sousa
Brad King wrote: Andreas Pakulat wrote: I've just implemented the request in 1645 in CMake HEAD. If you call find_package(Boost 1.34.1) I guess this would try to find, at least, boost version 1.34.1 but there is no way to tell that I want the exact version. Some support for operators

Re: [CMake] Using CPack to create multiple packages

2008-01-16 Thread Filipe Sousa
, CPACK_TBZ2, CPACK_TGZ, CPACK_TZ) that you can change. just invoke ccmake and then make package -- filipe sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Using CPack to create multiple packages

2008-01-16 Thread Filipe Sousa
Ted Berg wrote: Filipe Sousa wrote: I aplogize, my initial post wasn't terribly clear. I'm currently generating, for example, the following packages: foo-sdk-1.0.0.zip foo-qa-tools-1.0.0.zip foo-killer-app-1.0.0.zip These packages have different content and are targeted at different

[CMake] premake build system

2007-12-16 Thread Filipe Sousa
For those who love lua and want a build system there is premake http://industriousone.com/premake And I know that there is another build system that uses lua but I can't find the link. -- Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] cmake CVS errors

2007-12-13 Thread Filipe Sousa
. Bug? I think the right command is cmake --help-variable-list /tmp/out.txt -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] function and raise_scope commands

2007-12-07 Thread Filipe Sousa
Miguel A. Figueroa-Villanueva wrote: On Dec 7, 2007 6:42 PM, Filipe Sousa wrote: Try the following: function(foo x) set(${x} 1) # changed here raise_scope(${x}) endfunction() foo(y) message(STATUS y=${y}) I have this working. What gives me problems

Re: [CMake] function and raise_scope commands

2007-12-07 Thread Filipe Sousa
-- Generating done And the next example works: function(foo z) set(x 1) raise_scope(x) endfunction() foo(f) message(STATUS x=${x}) -- x=1 -- Configuring done -- Generating done If I understand your example, the raise_scope is the way to return values from functions. Thanks -- Filipe Sousa

Re: [CMake] CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS available in version X?

2007-11-27 Thread Filipe Sousa
James Bigler wrote: I just noticed this Wiki entry. What version of CMake was this introduced in? It's not mentioned in any of the help files, so I can't track when it was introduced. http://www.cmake.org/Wiki/CMake_FAQ#Isn.27t_the_.22Expression.

Re: [CMake] Modifying LIBRARY_OUTPUT_PATH dynamically in a macro

2007-06-06 Thread Filipe Sousa
you can use SET_TARGET_PROPERTIES(${target} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ...) gga wrote: I'm trying to change the destination where some shared libraries are created, trying to place them in subdirectories. I need to have a macro, which in turn will modify the LIBRARY_OUTPUT_PATH

Re: [CMake] How to use icc on linux with cmake.

2007-04-17 Thread Filipe Sousa
/CMake_Useful_Variables. My understanding is gcc.cmake is only used for either gcc or g++. Similarly, I believe Linux-icpc.cmake would only be included if you specified the icpc compiler (which I believe is the name of an older Intel compiler?). CC=icc CXX=icpc cmake .. Filipe Sousa signature.asc

[CMake] INSTALL() command from cvs

2007-04-12 Thread Filipe Sousa
the same command will copy the symlink INSTALL(FILES /usr/lib/gcc/i686-pc-linux-gnu/4.1.1/libstdc++.so.6 DESTINATION lib) I can't pack and distribute symlink instead of a file copy. Is there a easy way to get the old behavior back? -- Filipe Sousa

Re: [CMake] INSTALL() command from cvs

2007-04-12 Thread Filipe Sousa
[EMAIL PROTECTED] wrote: Currently not I think. Maybe you can copy the files during cmake time and then install the copied files ? Thanks for the tip, that should work. Bye Alex Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] INSTALL() command from cvs

2007-04-12 Thread Filipe Sousa
that the behavior should be reverted to the one of the current stable release, and the current behavior of the cvs version should be made available as an option. I agree. Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing

Re: [CMake] Multiple generators on the same library

2007-04-12 Thread Filipe Sousa
Hello ccmake . make In the second example, an out-of-place build is performed, i.e., the source code, libraries, and executables are produced in a directory separate from the source code directory(ies). mkdir Hello-Linux cd Hello-Linux ccmake ../Hello make Filipe Sousa signature.asc

Re: [CMake] Multiple generators on the same library

2007-04-11 Thread Filipe Sousa
Teodor Calin Hanchevici wrote: Hi all, I want to generate both nmake files and visual studio project files for the same libraries. When I try to do this I get this error: CMake Error: Error: generator : NMake Makefiles Does not match the generator used previously: Visual Studio 7 .NET 2003

Re: [CMake] Multiple generators on the same library

2007-04-11 Thread Filipe Sousa
Teodor Calin Hanchevici wrote: Thanks, I tried this and it does not work It generates in the same directory where CMakeLists.txt is located. You have to remove all generated files by cmake in the same directory where CMakeLists.txt is located. Filipe Sousa signature.asc Description

Re: [CMake] Multiple generators on the same library

2007-04-11 Thread Filipe Sousa
=vc8files calin You can't use different generators running in-source build. The solution is out-of-source builds, one for each generator. http://www.cmake.org/Wiki/CMake_FAQ#Out-of-source_build_trees Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] Command line defines

2007-04-10 Thread Filipe Sousa
dieter oberkofler wrote: Is it possible to set a CMake variable on the CMake command line (-D MYVAR:BOOL=ON) without having CMake caching this variable automatically? Cheers, Dieter $ cmake -DMYVAR=ON Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] With gcc is __FILE__ with full path. Is there a workaround?

2007-04-02 Thread Filipe Sousa
says that basename could modify its argument which may gives you unexpected result in this case... @google: #define FILE ((strrchr(__FILE__, '/') ? : __FILE__- 1) + 1) Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake

Re: [CMake] Why the target is named to liblib instead to lib? (Linux)

2007-03-31 Thread Filipe Sousa
} ) endif (USEAPR) CMakeLists.txt END The orignal file contains more lines, but this is the important. After cmake . and make there is a file named liblibstd3000c.so. Please, try a more recent version. -- Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] help with FindBoost.cmake

2007-03-31 Thread Filipe Sousa
you have undefined references. Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] COMPILE_FLAGS

2007-03-27 Thread Filipe Sousa
}) ENDFOREACH() ENDMACRO() -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Linking Behavior of Static Libraries on Windows

2007-03-22 Thread Filipe Sousa
. Should I use another command instead of LINK_DIRECTORIES ? TARGET_LINK_LIBRARIES() is smart enough to know which directories the linker needs Thanks. - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGAsrWbQdNYqwwwCwRAn0WAJ9URUiBzWRqOSF1vyQL8iTnzU7ISACcD30U

Re: [CMake] Linking Behavior of Static Libraries on Windows

2007-03-22 Thread Filipe Sousa
. This is a topic that has been discussed several times. Try searching for convenience libraries, - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGAszSbQdNYqwwwCwRAh/sAJ9tjYn+Mp5h0eHH3MSJxLABLqiUJgCeOFJj jQ0TcwoEo3g/uiPUaTfw710= =Ug5x -END PGP

Re: [CMake] EXECUTE_PROCESS - I can't copy files on Windows

2007-03-21 Thread Filipe Sousa
from your project source directory to your project binary directory. There are other variables you can use for full path: http://www.cmake.org/Wiki/CMake_Useful_Variables#Locations - -- Filipe Sousa Vitor Vasconcelos Araujo Silva wrote: Shame on me, reply my own post, but I fixed

Re: [CMake] Set prefix/suffix globally?

2007-03-21 Thread Filipe Sousa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kishore, Jonnalagadda (IE10) wrote: Is it possible to set the prefix and suffix to lib and .a for all libraries and .elf suffix to all executables? CMAKE_STATIC_LIBRARY_PREFIX CMAKE_STATIC_LIBRARY_SUFFIX CMAKE_SHARED_LIBRARY_PREFIX

Re: [CMake] Set prefix/suffix globally?

2007-03-21 Thread Filipe Sousa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Filipe Sousa wrote: Kishore, Jonnalagadda (IE10) wrote: Is it possible to set the prefix and suffix to lib and .a for all libraries and .elf suffix to all executables? CMAKE_STATIC_LIBRARY_PREFIX CMAKE_STATIC_LIBRARY_SUFFIX

Re: [CMake] EXECUTE_PROCESS - I can't copy files on Windows

2007-03-20 Thread Filipe Sousa
___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGACjsbQdNYqwwwCwRAqhdAJ4p9luO3HVWRh5iHwgBmLZU0oEGCQCdEtWR 1W+N27G5sXw73voT7mU35ME= =ONKg

Re: [CMake] How to exclude dependencies

2007-03-20 Thread Filipe Sousa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 dieter oberkofler wrote: I have finally migrated a rather large project to CMake and really like it but still have a few open issues, that I hope to solve with your help. Here comes the first ones: 1) Is there a way to limit the dependencies

Re: [CMake] CMake qmake debian and winxp

2007-03-20 Thread Filipe Sousa
source is located in a tarball here: http://www.polyxmass.org/varia/massxtreme.tar.gz Thanks a lot for your kind help ! Filippo -- Filippo Rusconi, PhD - CNRS researcher - key C78F687C @ pgp.mit.edu Author of ``GNU polyxmass'' at http://www.polyxmass.org -- Filipe Sousa diff -uNrw

Re: [CMake] Compile .c as c++ - VS2005

2007-03-20 Thread Filipe Sousa
)? - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGAFtzbQdNYqwwwCwRAldGAJ9JOyNL5IEjLXQ2+tObSu5o8UN61ACeOcw2 YZxQBal3/0FA0P+MbQFlQG0= =yVKT -END PGP SIGNATURE- ___ CMake mailing list CMake@cmake.org http

Re: [CMake] Compile .c as c++ - VS2005

2007-03-20 Thread Filipe Sousa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben Ratzlaff wrote: I have found that if I rename my .c files to .C then cmake does not emit the XML in the .vsproj to change the build mode. .C is a c++ file name extension. - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6

Re: [CMake] CMAKE_INCLUDE_CURRENT_DIR?

2007-03-15 Thread Filipe Sousa
Ps. I am making progress with cross-compiling by forcing the TEST variables as successful. I will write with more details when I am done. ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake - -- Filipe Sousa

Re: [CMake] CMAKE_INCLUDE_CURRENT_DIR?

2007-03-15 Thread Filipe Sousa
is as good as yours. -- Filipe Sousa ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] CMAKE_INCLUDE_CURRENT_DIR?

2007-03-15 Thread Filipe Sousa
at writing documentation and my poor english is *not* as good as yours. - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFF+cLVbQdNYqwwwCwRAvkFAKCwcp1QpgZBY4hpvLboR+sprMKOewCgr17x AmfTcNGyHUu2S193K3EWQVY= =EJJX -END PGP SIGNATURE

Re: [CMake] in- and out-of-source tree builds

2007-03-14 Thread Filipe Sousa
could have ~/build/foo/debug ~/build/foo/release ~/build/foo/debug-icc. i can remove the ~/build dir to free disk space. - --- filipe sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFF+GyybQdNYqwwwCwRAtZTAKCz4+tUO8q9dk11/WVmNGQI1V0A1ACfSoCt aJ5bdf8GzkLfgZ7pVbtonI0

Re: [CMake] Problems with Qt MOC and conditional compilation.

2007-03-13 Thread Filipe Sousa
DEFINITIONS) SEPARATE_ARGUMENTS(_flags) LIST(APPEND moc_includes ${_flags}) I didn't test -- Filipe Sousa ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] CMake and profiling...

2007-03-13 Thread Filipe Sousa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brandon J. Van Every wrote: Asmodehn Shade wrote: Hi everyone, I am currently in the process of starting to profile my software. It builds with cmake on unix, linux, and windows, more or less nicely ;) Assuming that I only want to use g++ with

Re: [CMake] Plugins (Modules) on Windows

2007-03-06 Thread Filipe Sousa
and the plugins with that library. -- Filipe Sousa ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Reading from stdin during exec_program

2007-03-03 Thread Filipe Sousa
EXEC_PROGRAM is deprecated. Try EXECUTE_PROCESS(). -- Filipe Sousa ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Weird behaviour on set includes

2007-03-03 Thread Filipe Sousa
provide is not there, only a form with a text area and a send button. Any ideas ? Thanks in advance -- Filipe Sousa ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] cmake does not run ldconfig = not found errors

2007-02-28 Thread Filipe Sousa
). Anyway, you can add the path to /etc/ld.so.conf or LD_LIBRARY_PATH and see if it works. -- Filipe Sousa ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] File globing and directory source tree

2007-02-27 Thread Filipe Sousa
Claudiu-Daniel wrote: Is FILE( GLOB ) and FILE( GLOB_RECURSE ...) only working for the directories under the [PROJECT_NAME]_SOURCE_DIR or [PROJECT_NAME]_BINARY_DIR? you must be doing something wrong. with this i can get all .so files from /usr/lib FILE(GLOB files /usr/lib/*.so)

Re: [CMake] Reading the content of a file

2007-02-25 Thread Filipe Sousa
Timo Rumland wrote: Hello, Have you tried CONFIGURE_FILE() ? You can use it to replace variables. CONFIGURE_FILE(myfile ${CMAKE_CURRENT_BINARY_DIR}/myfile-copy) I can use CONFIGURE_FILE to copy the file, but I have to edit the content of the file (that goes beyond just replacing VARS in the

Re: [CMake] Ada and CMake

2007-02-25 Thread Filipe Sousa
. http://public.kitware.com/cgi-bin/viewcvs.cgi/Modules/CMakeAddNewLanguage.txt?rev=1.1.2.1root=CMakeview=markup -- Filipe Sousa ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Trying to find a directory

2006-11-24 Thread Filipe Sousa
this GET_FILENAME_COMPONENT(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/../bin ABSOLUTE ) -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http

Re: [CMake] Setting the C dialect

2006-11-01 Thread Filipe Sousa
(CMAKE_C_FLAGS -std=c99) ENDIF() -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] any arithmetic expansion?

2006-10-27 Thread Filipe Sousa
Mathematical expressions. MATH(EXPR output variable math expression) EXPR evaluates mathematical expression and return result in the output variable. Example mathematical expression is '5 * ( 10 + 13 )'. -- Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] Semi-related question

2006-10-24 Thread Filipe Sousa
-Wall -isystem/tmp/messycode foo.cpp foo.o -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Semi-related question

2006-10-24 Thread Filipe Sousa
Filipe Sousa wrote: Jonathan Hansen wrote: This more of a compiler question but I figured since people here are make folks you might know and save me signing up for another list... Is there a way in GCC to eliminate an include directory from warnings? Example: gcc -Wall -I/tmp/messycode

Re: [CMake] QT4_ADD_RESOURCES not creating cpp on Mac OS X

2006-10-23 Thread Filipe Sousa
} ${QtApp_RCCS_SRCS}) ^ -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] TRY_COMPILE and CMAKE_C_FLAGS

2006-10-21 Thread Filipe Sousa
Gregor Jasny wrote: Hi, I want to test if the current GNU compiler accept the -fopenmp flag. INCLUDE(CheckCCompilerFlag) CHECK_C_COMPILER_FLAG(-fopenmp HAVE_OPENMP) -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake

Re: [CMake] [binary dir] breaks INSTALL(...) if added to ADD_SUBDIRECTORY(...)

2006-10-21 Thread Filipe Sousa
it like this: SET(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib) Thanks again, Peter. -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http

Re: [CMake] [binary dir] breaks INSTALL(...) if added to ADD_SUBDIRECTORY(...)

2006-10-21 Thread Filipe Sousa
Filipe Sousa wrote: Peter Visser wrote: Thanks for the advice, but I cannot find these directives in the documentation (http://www.cmake.org/HTML/Documentation.html). Perhaps I'm looking in the wrong place, where do I need to look for the documentation? http://www.cmake.org/Wiki

Re: [CMake] FindQt4 for Qt 4.2.0 does not recognise debug-libs

2006-10-19 Thread Filipe Sousa
libraries with objcopy: objcopy --only-keep-debug $targ $targ.debug objcopy --strip-debug $targ objcopy --add-gnu-debuglink=$targ.debug $targ AFAIK qt 4.2.0 does not generate debug and release libs at the same sime -- Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] (more infos) FindQt4 for Qt 4.2.0 does not recognise debug-libs

2006-10-19 Thread Filipe Sousa
Jens wrote: for more information I attached the output of ls -la of the Qt4.2.0-lib-directory Jens schrieb: http://lists.trolltech.com/qt4-preview-feedback/2006-09/thread00083-0.html -- Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] Building generated c++ code with py++ and boost.python

2006-10-11 Thread Filipe Sousa
Pecevski Dejan wrote: Filipe Sousa wrote: Hi Filipe, Thanks for the reply. I have setup a simple example based on your solution, but it doesn't seem to work. Files of the example are attached to the e-mail. Basically in the example I am building a library libtest from these files: a.cpp

Re: [CMake] Preserving directory structure with INSTALL(...)

2006-10-10 Thread Filipe Sousa
...]] [...]) -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Building generated c++ code with py++ and boost.python

2006-10-10 Thread Filipe Sousa
___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo

[CMake] INSTALL( COMPONENT

2006-10-02 Thread Filipe Sousa
Runtime # .so, mod.dll ARCHIVE DESTINATION MyTest/lib/static COMPONENT Development # .a, .lib ) How can I install only the runtime files? make install installs everything. -- Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] CMake and portable dynamic library loading?

2006-09-30 Thread Filipe Sousa
defaults to the current value of BUILD_SHARED_LIBS. If this variable is not set, the type defaults to STATIC. -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http

[CMake] Re: Header files in Visual Studio projects?

2006-09-22 Thread Filipe Sousa
expression matches the file will be favored. The name of the group may contain backslashes to specify subgroups: SOURCE_GROUP(outer\\inner ...) For backwards compatibility, this command is also supports the format: SOURCE_GROUP(name regex) -- Filipe Sousa

[CMake] Re: Cmake and CXX

2006-09-22 Thread Filipe Sousa
On Friday 22 September 2006 08:15, Xavier Larrode wrote: Hello all, Cmake is using by default /usr/bin/c++ to compile project. Is it a way to set it ton another compiler like g++, or gcc-color. Thanks CXX=g++ CC=gcc cmake -- Filipe Sousa pgpnpEiEntNe3.pgp Description: PGP signature

Re: [CMake] Assembly code

2006-09-17 Thread Filipe Sousa
Brandon J. Van Every wrote: It would be nice if the CMake mailing list archives already had a search button set up. http://dir.gmane.org/gmane.comp.programming.tools.cmake.user http://www.mail-archive.com/cmake@cmake.org/ -- Filipe Sousa signature.asc Description: OpenPGP digital

Re: [CMake] elseif request

2006-09-16 Thread Filipe Sousa
() this is a good design choice, especially as conditionals are nested deeper and deeper, as it does prevent some user errors. -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org

Re: [CMake] make install not works for me

2006-09-07 Thread Filipe Sousa
Slava Semushin wrote: So I have questions for you: where my fault ? What I should fix in my CMakeLists.txt? And why documents WritingCMakeLists.html and I can't tell you what you have to fix without your CMakeLists.txt -- Filipe Sousa signature.asc Description: OpenPGP digital

Re: [CMake] make install not works for me

2006-09-07 Thread Filipe Sousa
Slava Semushin wrote: --- Filipe Sousa 2006-09-07 09:17:00 +0100 +++ Slava Semushin 2006-09-07 15:31:28 +0700 FS I can't tell you what you have to fix without your CMakeLists.txt Wow. I'm very sorry. I forgot attach CMakeLists.txt :-( --- Brandon J. Van Every 2006-09-07 01:20:55

Re: [CMake] FIND_PROGRAM and qt4

2006-09-06 Thread Filipe Sousa
] ) It's the second time I have problem with the behavior of searching directory, the first one was with the macro FIND_PATH. -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http

Re: [CMake] Mailing lists for cvs and bugtracker

2006-09-06 Thread Filipe Sousa
or, if not, can something like that be set up? Thanks Joerg http://www.cmake.org/Testing/Dashboard/MostRecentResults-Nightly/Dashboard.html and open n Files Changed -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake

Re: [CMake] Determining Compiler Name and Version

2006-09-04 Thread Filipe Sousa
EXECUTE_PROCESS to invoke the compiler and STRING to parse the output. -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Find template

2006-08-31 Thread Filipe Sousa
of FindxXx.cmake and variables are in form os xXx_VARIABLE. FindSDL_image.cmake in form of Find_XXX_xxx.cmake and variables in form of XXX_VARIABLE. Just look around and you will see that there is no consistence. Why not fallow what is in Modules/readme.txt? -- Filipe Sousa signature.asc

Re: [CMake] Custom command : generate a cxx file wich need to be compile after

2006-08-29 Thread Filipe Sousa
-BUILD. And i want that any make clean , delete it. Any idea how i can do that ?? http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_generate_a_source_file_during_the_build.3F -- Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] Genterate mo files from po files

2006-08-25 Thread Filipe Sousa
___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] make dist?

2006-07-26 Thread Filipe Sousa
. Regards, Mr.Prise ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake http://public.kitware.com/pipermail/cmake/2006-May/009060.html -- Filipe Sousa signature.asc Description: OpenPGP digital signature

Re: [CMake] creating a project without CXX

2006-07-15 Thread Filipe Sousa
be in your path. Please add the compiler to your PATH environment, and re-run CMake. -- Configuring done PROJECT(foo C) -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org

Re: [CMake] Getting Started Questions

2006-07-11 Thread Filipe Sousa
-- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] cmake doesnt use /usr/bin/ar with c++ projects

2006-07-11 Thread Filipe Sousa
://thread.gmane.org/gmane.comp.programming.tools.cmake.user/1758/focus=1758 -- Filipe Sousa signature.asc Description: OpenPGP digital signature ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] FIND_PACKAGE list of components (...REQUIRED components)

2006-07-08 Thread Filipe Sousa
correct _FOUND flags - thus a bug, right? See cmFindPackageCommand.cxx:75 ff Jan There is bug in a patch that I made to handle components. If we have the QUIET argument in the end [FIND_PACKAGE(Foo REQUIRED Comp1 Comp2 QUIET) ] the quiet argument is ignored. I attached a fix. -- Filipe Sousa

Re: AW: [CMake] Where to find consistent documentation about CMake ?

2006-07-05 Thread Filipe Sousa
for CMake would be a real plus. Your project is great; it only lacks a manual to take advantage of all of its features. You have to set CMAKE_BUILD_TYPE to RELEASE or DEBUG so that cmake can make a choice between the debug and the optimized library. Thank you, Frédéric Sagnes - -- Filipe Sousa

Re: [CMake] canonical way to distinguish CMake builds?

2006-07-05 Thread Filipe Sousa
the file flags.make in your build tree. Cheers, Brandon Van Every - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (GNU/Linux) iD8DBQFEq4tebQdNYqwwwCwRAvTDAJ974Al8NVJPMkn7z9ntIsXN69d+qwCdEpJ/ b6rSCy6A82H3tTU3cilAdxk= =WKRD -END PGP SIGNATURE

Re: [CMake] Made a new generator

2006-07-05 Thread Filipe Sousa
Carlos Garcés - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (GNU/Linux) iD8DBQFEq402bQdNYqwwwCwRAp+HAJ9b6lFLoTr4tlPaOQtDe4Q+D4OV0ACfVldH bCy1pWihGG0dGIPXg3zZf98= =Mb7k -END PGP SIGNATURE- ___ CMake mailing list CMake

Re: [CMake] Copying a data directory

2006-07-05 Thread Filipe Sousa
is just to have some test input data available in the location where the newly built program is looking for it. - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.4 (GNU/Linux) iD8DBQFEq46XbQdNYqwwwCwRAs2LAJ4z5YzS+mZ3hlUzTXMvPCgNGu0IwgCdGvEV 1nMGcarGW0Jl6OFaafZrfSo= =zmqt

Re: [CMake] INSTALLing a directory

2006-06-26 Thread Filipe Sousa
inside a double-quoted string. For example, the code - -- Filipe Sousa -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2.2 (GNU/Linux) iD4DBQFEn96wbQdNYqwwwCwRAromAJY5/d2+6n2vDltB2oeU3TivLKK8AJ9X6vi3 tJ7YS74sYBCMlRm0unG62Q== =WH8v -END PGP SIGNATURE

  1   2   >