[cmake-developers] CMAKE 3.7 (for Android target) error: crtbegin_dynamic.o:crtbrand.c:function _start: error: undefined reference to 'main’

2016-11-14 Thread Roberto Regalino
Hi, Not sure if this is the place to ask my question but here we go: I am trying to build C++ code targeting the Android platform. I already have the whole system setup to generate VisualStudio projects and it is using the Nsight Tegra plug-in. I’ve been asked to update the CMake files so we

Re: [cmake-developers] Android variables

2016-11-14 Thread Brad King
On 11/11/2016 01:51 PM, Brad King wrote: > Okay, thanks. I'll investigate how to properly expose this information. Please see: https://gitlab.kitware.com/cmake/cmake/merge_requests/254 -Brad -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at:

Re: [cmake-developers] [PATCH] Discussion needed: FindBISON: refine VERBOSE feature of BISON_TARGET

2016-11-14 Thread Brad King
On 07/18/2016 09:14 AM, Brad King wrote: > FindBISON: Change usage of [VERBOSE ] to [VERBOSE []] > https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ad2497aa BTW, this caused a regression reported here: * https://gitlab.kitware.com/cmake/cmake/issues/16426 Please take a look at the fix

Re: [cmake-developers] Current deficiencies of automoc

2016-11-14 Thread Sebastian Holtermann
Am 14.11.2016 um 12:41 schrieb Alan W. Irwin: > On 2016-11-14 09:06+0100 Sebastian Holtermann wrote: > >> What probably could be done is to add >> ${CMAKE_BINARY_DIR}/${TARGETNAME}_automoc.dir >> to the INCLUDE_DIRECTORIES of the target and then generate all >> #included moc file there, accepting

Re: [cmake-developers] Current deficiencies of automoc

2016-11-14 Thread Alan W. Irwin
On 2016-11-14 09:06+0100 Sebastian Holtermann wrote: What probably could be done is to add ${CMAKE_BINARY_DIR}/${TARGETNAME}_automoc.dir to the INCLUDE_DIRECTORIES of the target and then generate all #included moc file there, accepting the risk of intra target name collisions. Hi Sebastian:

Re: [cmake-developers] Current deficiencies of automoc

2016-11-14 Thread Sebastian Holtermann
Am 13.11.2016 um 07:48 schrieb Alan W. Irwin: > On 2016-10-22 19:49+0200 Sebastian Holtermann wrote: > > [...] >> Actually I made an implementation in 3.6.0 that generated the moc files >> in the a build tree subdirectory correspoding to the header path. >> But that blew up on some projects