Skip to content
master
Switch branches/tags
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
ext
 
 
 
 
pch
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 

executors

Prototype of the Executors proposal for ISO C++

IDE Builds

XCode

mkdir build
cd build
cmake -G"Xcode" ../ -B.

Visual Studio 12, 13

mkdir build
cd build
cmake -G"Visual Studio 12" ..\ -B.

console builds

OSX

mkdir build
cd build
cmake -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -B. ../
make

Windows

mkdir build
cd build
cmake -G"NMake Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -B. ..\
nmake

The build only produces a test binary.

Running tests

  • You can use the CMake test runner ctest
  • You can run the test binary directly extr_test
  • Tests can be selected by name or tag extr_test [time]

About

Prototype of the Executors proposal for ISO C++

Resources

License

Releases

No releases published

Packages

No packages published