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
> 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
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
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
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
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
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
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://