aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-15 22:26:26 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-15 22:26:26 +0300
commite4973c13558b12397124d7c9423c5eb641140444 (patch)
tree55d53124f60bd6c8efb8c36661ba65f76d7c6eed
parenthandle block parsing errors the standard way (diff)
downloadaes-tools-e4973c13558b12397124d7c9423c5eb641140444.tar.gz
aes-tools-e4973c13558b12397124d7c9423c5eb641140444.zip
utils/cxx/ -> cxx/
Diffstat (limited to '')
-rw-r--r--CMakeLists.txt2
-rw-r--r--cxx/CMakeLists.txt (renamed from utils/cxx/CMakeLists.txt)0
-rw-r--r--cxx/include/aesnixx/all.hpp (renamed from utils/cxx/include/aesnixx/all.hpp)0
-rw-r--r--cxx/include/aesnixx/error.hpp (renamed from utils/cxx/include/aesnixx/error.hpp)0
-rw-r--r--utils/CMakeLists.txt2
5 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 505e823..1301aa7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,6 +14,8 @@ add_library(libaesni ${libaesni_sources} ${libaesni_headers})
target_include_directories(libaesni PUBLIC include/)
target_compile_definitions(libaesni PRIVATE _CRT_SECURE_NO_WARNINGS)
+add_subdirectory(cxx)
+
add_subdirectory(examples)
add_subdirectory(test)
add_subdirectory(utils)
diff --git a/utils/cxx/CMakeLists.txt b/cxx/CMakeLists.txt
index 14b7700..14b7700 100644
--- a/utils/cxx/CMakeLists.txt
+++ b/cxx/CMakeLists.txt
diff --git a/utils/cxx/include/aesnixx/all.hpp b/cxx/include/aesnixx/all.hpp
index cf00535..cf00535 100644
--- a/utils/cxx/include/aesnixx/all.hpp
+++ b/cxx/include/aesnixx/all.hpp
diff --git a/utils/cxx/include/aesnixx/error.hpp b/cxx/include/aesnixx/error.hpp
index dd908c5..dd908c5 100644
--- a/utils/cxx/include/aesnixx/error.hpp
+++ b/cxx/include/aesnixx/error.hpp
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index cd7f340..e1099af 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -1,5 +1,3 @@
-add_subdirectory(cxx)
-
macro(util prefix)
add_executable(util_${prefix} ${prefix}.cpp)
target_link_libraries(util_${prefix} libaesnixx libaesni)