[CMake] ThreadStack Project: a new innovative open source software for multi-thread computing

2018-05-02 Thread Erkam Murat Bozkurt
I have developed a new open source software as a result of a scientific research and I want to share my study with scientists and/or software developers. ThreadStack is an innovative software which produces a class library for C++ multi-thread programming and the outcome of the ThreadStack acts as

Re: [CMake] advice for resolving errors with CMake 3.8

2018-05-02 Thread Michael Ellery
> On May 2, 2018, at 3:55 PM, Alan W. Irwin wrote: > > On 2018-05-02 09:45-0700 Michael Ellery wrote: > >> I generally develop on a latest cmake (provided by homebrew) and that works >> well for me. Unfortunately, I also need to support Visual Studio builds and >> it looks like the cmake that

Re: [CMake] advice for resolving errors with CMake 3.8

2018-05-02 Thread Alan W. Irwin
On 2018-05-02 09:45-0700 Michael Ellery wrote: I generally develop on a latest cmake (provided by homebrew) and that works well for me. Unfortunately, I also need to support Visual Studio builds and it looks like the cmake that is bundled with VS is 3.8. I’m apparently using bleeding-edge fea

[CMake] advice for resolving errors with CMake 3.8

2018-05-02 Thread Michael Ellery
I generally develop on a latest cmake (provided by homebrew) and that works well for me. Unfortunately, I also need to support Visual Studio builds and it looks like the cmake that is bundled with VS is 3.8. I’m apparently using bleeding-edge features related to IMPORTED libraries, judging by th

[CMake] CTest: running script failing returning: -1

2018-05-02 Thread Bob Berger
Hi, I have been using CTest to successfully run continuous builds for several years, but my continuous builds have been failing since I moved them from a Windows Server 2008 R2 machine to a Windows Server 2012 R2 machine. To diagnose the problem, I added the --debug option to the CTest command

Re: [CMake] using ExternalProject_Add when cmake is launched

2018-05-02 Thread Petr Kmoch
Hi Stephane. ExternalProject is designed to run at *build* time, not at *CMake* time. It is not really intended for mixing with normal, non-ExternalProject targets (such as those created by add_library). When using ExternalProject, the canonical form of operation is a SuperBuild-style project: yo

Re: [CMake] using ExternalProject_Add when cmake is launched

2018-05-02 Thread Stéphane Ancelot
include(ExternalProject) ExternalProject_Add(     WIN32DEPSV2     PREFIX ${CMAKE_CURRENT_BINARY_DIR}/WIN32DEPSV2     DOWNLOAD_DIR .     STAMP_DIR ./stamps     SOURCE_DIR   WIN32DEPSV2     GIT_REPOSITORY g...@numagit.numalliance.com:THIRD_PARTIES/WIN32DEPS.git     CONFIGURE_COMMAND ""     BUILD_CO

Re: [CMake] using ExternalProject_Add when cmake is launched

2018-05-02 Thread Kai Wolf
You probably need to manually add a dependency from your ExternalProject to your target that needs the libraries. For instance ExternalProject_Add(fetch_win32_libs ...) add_library(your_other_target ...) add_dependencies(your_other_target fetch_win32_libs) Greetings Kai Wolf http://