Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jamesparrott/include_stdafx_in_cmake

A way to avoid deleting the first line (#include stdafx.h) of every file in the entire code base when porting Visual Studio projects to CMake, using a compiler definition and a little C++ templating.
https://github.com/jamesparrott/include_stdafx_in_cmake

Last synced: about 1 month ago
JSON representation

A way to avoid deleting the first line (#include stdafx.h) of every file in the entire code base when porting Visual Studio projects to CMake, using a compiler definition and a little C++ templating.

Awesome Lists containing this project

README

        

# Include stdafx.h in CMake
A way to avoid deleting the first line (`#include stdafx.h`) of every file in the entire code base when porting Visual Studio projects to CMake, using a compiler definition and a little C++ templating.

## To compile:
* `cmake -B build -S .`
* `cmake --build build`