diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-08 19:10:18 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-08 19:10:18 +0300 |
commit | 0a2b964e67fae0b6a1c8217dabbf844f0c424b3b (patch) | |
tree | 771c22b4cb6b67a893d3d549db946df5af3b18e9 | |
parent | AppVeyor: build w/ VS 2017 as well (diff) | |
download | privilege-check-0a2b964e67fae0b6a1c8217dabbf844f0c424b3b.tar.gz privilege-check-0a2b964e67fae0b6a1c8217dabbf844f0c424b3b.zip |
add cmake-common as a submodule
-rw-r--r-- | .gitmodules | 3 | ||||
-rw-r--r-- | CMakeLists.txt | 2 | ||||
m--------- | cmake | 0 |
3 files changed, 4 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d65ecb9 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "cmake"] + path = cmake + url = https://github.com/egor-tensin/cmake-common.git diff --git a/CMakeLists.txt b/CMakeLists.txt index d239356..658a8d8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ project(privilege_check CXX) -include(common.cmake) +include(cmake/common.cmake) file(GLOB cpp_files "src/*.cpp") file(GLOB header_files "src/*.h" "src/*.hpp") diff --git a/cmake b/cmake new file mode 160000 +Subproject 2bae67a4721aa39d2c24e89e00fa07e221654a9 |