Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Tiny AES C
Commits
7468e2ec
Commit
7468e2ec
authored
Jan 31, 2019
by
Torfinn Berset
Browse files
Also try to compile C++ version of test
parent
ba0f2fd1
Changes
3
Show whitespace changes
Inline
Side-by-side
.gitignore
View file @
7468e2ec
/*.o
/test.elf
/test.map
test_package/build
test.cpp
0 → 100644
View file @
7468e2ec
#include "aes.hpp"
#include "test.c"
test_package/CMakeLists.txt
View file @
7468e2ec
cmake_minimum_required
(
VERSION 2.8.12
)
project
(
TinyAesPackageTest C
)
project
(
TinyAesPackageTest C
CXX
)
include
(
${
CMAKE_BINARY_DIR
}
/conanbuildinfo.cmake
)
conan_basic_setup
()
add_executable
(
example ../test.c
)
add_executable
(
example_cpp ../test.cpp
)
target_link_libraries
(
example
${
CONAN_LIBS
}
)
target_link_libraries
(
example_cpp
${
CONAN_LIBS
}
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment