Skip to content

mwcorley79/BlockingQueue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BlockingQueue build test on Windows 10

Prereqs (Windows)

  1. Install CMake for Windows: https://cmake.org/download/
  2. Visual Studio 2019 (installed, using as default generator)
Steps for testing on Windows
  1. git clone https://github.com/mwcorley79/BlockingQueue.git
  2. cd BlockingQueue
  3. mkdir wbuild
  4. cd wbuild
  5. cmake .. -DCMAKE_INSTALL_PREFIX=../_install
  6. start Visual Studio 2019, and open BlockingQueue.sln (solution) in the wbuild folder
  7. build/run/debug BlockingQueueTest project as usual with VS 2019
Note: Cmake uses CMakeLists.txt to generate the Visual Studio solution on Windows
*** The same CMakeLists.txt is used by CMake to generate Makefiles on Linux (see below) ***
Prereqs (Linux)
  1. install cmake 3.10 or greater (debian based: sudo apt-get install cmake)
  2. toolchain: gcc/g++ etc.
Steps for testing on Linux
  1. git clone https://github.com/mwcorley79/BlockingQueue.git
  2. cd BlockingQueue
  3. mkdir lbuild
  4. cd lbuild
  5. cmake .. -DCMAKE_INSTALL_PREFIX=../_install
  6. make all

CMake == "very nice cross platform code generation!"
This is my first CMake project. Many more to come to soon!

About

Dr. Fawcett's C++ BlockingQueue (built with CMake for cross platform build tests)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors