You can contact the guy behind FASTBuild to let him know you're interested
right here: fastbu...@fastbuild.org
I know he knows there's interest but right now I don't really know how to
get people who are actually familiar with CMake's generator code to be
interested or link to documentation for th
Hello,
i’m curious about 2 things and therefore wanted to ask:
When i use qt5_add_resources and some of my resources change they get
recompiled during the next invocation of my build tool. Whereas when i use
cmakes autorcc this is not the case.
Secondly, with qt5_wrap_cpp every file gets processe
Where are these variables documented? I haven't seen them anywhere.
Also is this required? I'd rather the CMake script itself specify that
32-bit compilation is needed, since the code itself does not compile
properly in 64-bit environment.
On Mon, Jan 19, 2015 at 1:48 PM, Gregor Jasny wrote:
> He
Anybody has more news on this? FASTBuild looks absolutly amazing!
--
View this message in context:
http://cmake.3232098.n2.nabble.com/Is-anyone-working-on-a-FASTBuild-Generator-tp7588853p7589570.html
Sent from the CMake mailing list archive at Nabble.com.
--
Powered by www.kitware.com
Please
Hi,
setting global environment variables in windows is just adding/editing some
registry keys. As an alternative, you can run setx command in a cmd.exe
instance.
HS
Am 24. Januar 2015 21:29:20 MEZ, schrieb Gonzalo Garramuno :
>I would like to set an environment variable in the NSIS installer,
I would like to set an environment variable in the NSIS installer, other
than PATH during the install. Can someone show me how?
--
Powered by www.kitware.com
Please keep messages on-topic and check the CMake FAQ at:
http://www.cmake.org/Wiki/CMake_FAQ
Kitware offers various services to supp
Adam wrote:
> I was hoping there might have been a better way to do this with target
> properties of legacyLib.
>
There is with cmake 3.1:
set(isExe $,EXECUTABLE>)
target_sources(legacyLib INTERFACE
"$<${isExe}:${CMAKE_CURRENT_SOURCE_DIR}/use_symbol.cpp>")
LegacyLib provides a simple sour
On Sat, 2015-01-24 at 01:43 -0500, Braden McDaniel wrote:
> On Sat, 2015-01-24 at 13:41 +1000, Adam wrote:
>
> > The library contains a static which registers itself in its
> > constructor. This problem is described here
> > http://stackoverflow.com/a/842770
>
> As something of an aside to your q
Hello,
I add my required frameworks through this function of mine:
function(add_framework target framework)
if(APPLE)
find_library(found ${framework})
if(${found} STREQUAL "${framework}-NOTFOUND³)
message(FATAL_ERROR "ERROR: ${framework} not found
(${CMAKE_OSX_SYS