Re: [CMake] Wrong CMAKE_SYSTEM_NAME handling

2015-01-03 Thread Marco Milanese
Thanks J Decker, that solved my question. -- View this message in context: http://cmake.3232098.n2.nabble.com/Wrong-CMAKE-SYSTEM-NAME-handling-tp7589372p7589375.html Sent from the CMake mailing list archive at Nabble.com. -- Powered by www.kitware.com Please keep messages on-topic and check

Re: [CMake] Wrong CMAKE_SYSTEM_NAME handling

2015-01-03 Thread J Decker
On Sat, Jan 3, 2015 at 1:50 PM, Marco Milanese wrote: > Hi, > > I'm trying to setup a cross compile CMakeLists.txt. My target is a embedded > ARM core. > This is my CMakeLists.txt > . > > The linker script seems wrong: > mm7@pc5:~/test/cmake/build$ c

[CMake] Wrong CMAKE_SYSTEM_NAME handling

2015-01-03 Thread Marco Milanese
Hi, I'm trying to setup a cross compile CMakeLists.txt. My target is a embedded ARM core. This is my CMakeLists.txt . The linker script seems wrong: mm7@pc5:~/test/cmake/build$ cat CMakeFiles/target.dir/link.txt arm-none-eabi-g++ CMakeFiles/ta

Re: [CMake] Rename target RUN_TESTS

2015-01-03 Thread Scott Aron Bloom
So I turned this on, it definitely helps.. However, I find that the order of the folders is now sorted case sensitive. Is there anyway to turn it back to the "non folder manner" where the folder order is case-insensitive? Scott -Original Message- From: John Drescher [mailto:dresche...@

Re: [CMake] Help with Policy CMP0026 (disallow LOCATION target property)

2015-01-03 Thread Paul Smith
On Mon, 2014-12-29 at 02:03 +, Fraser Hutchison wrote: > I'd have thought the following replacement would work the same: > > function(stageobj target dir) > add_custom_target(stage_${target} ALL > COMMAND "${CMAKE_COMMAND}" -E make_directory "${DESTDIR}/${dir}" > CO