From e1b48e76d57da1fa62701cc02bd48b1b6e5668c3 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 8 Dec 2019 19:33:40 +0300 Subject: add cmake-common as a submodule --- .gitmodules | 3 +++ CMakeLists.txt | 2 +- cmake | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 160000 cmake 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 b1fa830..63d1a42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ project(aes_tools) -include(common.cmake) +include(cmake/common.cmake) set(AES_TOOLS_ASM OFF CACHE BOOL "Use the assembly language implementation instead of the one in C") diff --git a/cmake b/cmake new file mode 160000 index 0000000..0136341 --- /dev/null +++ b/cmake @@ -0,0 +1 @@ +Subproject commit 01363414ac87384e080954d73a7eb0172cb2e3f5 -- cgit v1.2.3