Re: [cmake-developers] Contributing to CMake Server

2017-06-26 Thread Brad King
On 06/25/2017 05:34 AM, Michael Scott wrote: > I'm looking to do a bit more CMake development and the CMake server > project looks interesting. Does this area still need more contributors > and what's the best way to see what tasks there are? Thanks for volunteering. There are some open issue

Re: [cmake-developers] Bug with CMAKE_ASM_COMPILER and Android NDK

2017-06-26 Thread Brad King
On 06/23/2017 03:18 PM, Robert Dailey wrote: > enable_language(ASM) > > CMake appears to find clang.exe in the wrong place Add a `Modules/Platform/Android-Determine-ASM.cmake` module based on `Modules/Platform/Android-Determine-CXX.cmake`. Also the modules

[cmake-developers] 3.9.0-rc3: CMAKE_ANDROID_NDK_DEPRECATED_HEADERS doesn't work outside of toolchain

2017-06-26 Thread Robert Dailey
Hi, I tried setting CMAKE_ANDROID_NDK_DEPRECATED_HEADERS in a common CMake script of mine (set during configuration but before any targets are created). I also tried making it a cache variable, but in each case it isn't working. I set like this: set( CMAKE_ANDROID_NDK_DEPRECATED_HEADERS 1 ) And

Re: [cmake-developers] Bug with CMAKE_ASM_COMPILER and Android NDK

2017-06-26 Thread Robert Dailey
On Mon, Jun 26, 2017 at 10:25 AM, Brad King wrote: > On 06/23/2017 03:18 PM, Robert Dailey wrote: >> enable_language(ASM) >> >> CMake appears to find clang.exe in the wrong place > > Add a `Modules/Platform/Android-Determine-ASM.cmake` module > based on

Re: [cmake-developers] Bug with CMAKE_ASM_COMPILER and Android NDK

2017-06-26 Thread Brad King
On 06/26/2017 03:06 PM, Robert Dailey wrote: > Are you saying I should modify my local installation? Or are these > your personal notes so that these changes get adopted upstream? These are notes for anyone that wants to fix this in CMake by doing development. I don't know if I'll find time

Re: [cmake-developers] 3.9.0-rc3: CMAKE_ANDROID_NDK_DEPRECATED_HEADERS doesn't work outside of toolchain

2017-06-26 Thread Brad King
On 06/26/2017 11:58 AM, Robert Dailey wrote: > Why does this only work in the toolchain file? 1. It needs to be set early. 2. It needs to propagate into try_compile projects. The toolchain file is sufficient for both. A cache entry is okay for (1) but for (2) one would additionally need to set