[CMake] [Visual Studio] Universal Windows Platform projects

2016-07-06 Thread Adam Rankin
Hello all, I've been trying to identify the correct variables to set to create a UWP project using VS2015, and the projects generated are missing a few critical tags. I'm using CMAKE_SYSTEM_NAME=WindowsStore and CMAKE_SYSTEM_VERSION=10.0. This correctly identifies and sets the target platform

Re: [CMake] [Visual Studio] Is it possible to specify a different target architecture?

2016-06-28 Thread Adam Rankin
Well now don’t I feel silly… Thanks! Adam From: Benjamin Ballet [mailto:bbal...@ivsweb.com] Sent: Tuesday, June 28, 2016 9:59 AM To: Adam Rankin Cc: cmake@cmake.org Subject: Re: [CMake] [Visual Studio] Is it possible to specify a different target architecture? Hi Look at the

[CMake] [Visual Studio] Is it possible to specify a different target architecture?

2016-06-28 Thread Adam Rankin
Hello all, I am wondering if there exist CMake commands/variables to specify for Visual Studio to have the project file(s) generated target a different architecture than the one associated with that version of Visual Studio. For example, I develop in VS2015, but would like to target the VS2012

Re: [CMake] execute_process, cmd /c and vcvarsall

2016-06-10 Thread Adam Rankin
haven't discussed it yet). I was hoping to solve the problem within a CMake one-liner to reduce the complexity of the change. Thanks for your suggestions, Adam -Original Message- From: David Cole [mailto:dlrd...@aol.com] Sent: Friday, June 10, 2016 7:48 AM To: Kristian Cc: Adam R

[CMake] execute_process, cmd /c and vcvarsall

2016-06-09 Thread Adam Rankin
Hello all, I am trying to develop a execute_process command that will first load the env variables set by the appropriate vcvarsall, and then run a compile command. See here for my progress so far: set(cuda_generation_command cmd /c "\"call \"$ENV{VS${VS_IDE_VERSION}0COMNTOOLS}../../VC/vcvarsa

Re: [CMake] xyz_LIBRARIES

2016-02-03 Thread Adam Rankin
, Adam From: Craig Scott [mailto:audiofana...@gmail.com] Sent: Wednesday, February 03, 2016 4:26 PM To: Adam Rankin Cc: cmake@cmake.org Subject: Re: [CMake] xyz_LIBRARIES On 4 February 2016 at 04:45, Adam Rankin mailto:aran...@robarts.ca>> wrote: Hello all, I am trying to sort out a p

[CMake] xyz_LIBRARIES

2016-02-03 Thread Adam Rankin
Hello all, I am trying to sort out a project with multiple layers of dependencies and I am trying to figure out the "right" way of configuring things. First easy question: Should a value xyz_LIBRARIES contain target names, or library file locations? Second question: Should a FindXYZ.cmake file

Re: [CMake] ExternalProject_Add support for git clone -o option

2016-01-15 Thread Adam Rankin
s the git_tag implementation. My implementation makes the git remote name completely optional and defaults to "origin". Regards, Adam -Original Message- From: Nicholas Braden [mailto:nicholas11bra...@gmail.com] Sent: Friday, January 15, 2016 12:02 PM To: Adam Rankin Cc: cmake@cmake.

Re: [CMake] ExternalProject_Add support for git clone -o option

2016-01-15 Thread Adam Rankin
holas11bra...@gmail.com] Sent: Friday, January 15, 2016 12:02 PM To: Adam Rankin Cc: cmake@cmake.org Subject: Re: [CMake] ExternalProject_Add support for git clone -o option Why would you like to have names other than origin? I am struggling to think of a use case for this, seeing as you never directl

[CMake] ExternalProject_Add support for git clone -o option

2016-01-15 Thread Adam Rankin
Hello all, I am reading through the ExternalProject source for 3.2 at the moment (if updating to 3.4 is the answer, great!) and trying to determine if there is support for the -o option when using a git repository. Has anyone accomplished this? I would like to have names other than "origin" Ch