From ba73523bb7ab83d6d2de475148737762838dc0ce Mon Sep 17 00:00:00 2001 From: Andrey Kyrdyumov Date: Wed, 28 Feb 2018 00:03:47 +0200 Subject: [PATCH] Add CMake support It's not that this is so much practically neded, but it is much better have CMake for building project, so you could build not only with VS, or control which version of CL to use without changing .vcproj --- .gitignore | 1 + CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 CMakeLists.txt diff --git a/.gitignore b/.gitignore index 70dc36a..a43c95c 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ bld/ # Roslyn cache directories *.ide/ +.vs/ # MSTest test Results [Tt]est[Rr]esult*/ diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..232e061 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1 @@ +add_executable(bwheadless inject.cpp sc_hook.cpp main.cpp)