diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-31 19:38:02 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-31 19:38:02 +0300 |
commit | fc57a1fa4e0c74bcab836601cbd8677717b5064f (patch) | |
tree | dfdc93de86393affb6d54b674fa5247802f3f61c /README.md | |
parent | test: remove really old all.bat (diff) | |
download | aes-tools-fc57a1fa4e0c74bcab836601cbd8677717b5064f.tar.gz aes-tools-fc57a1fa4e0c74bcab836601cbd8677717b5064f.zip |
add `make install`, `make test`, etc.
Diffstat (limited to '')
-rw-r--r-- | README.md | 32 |
1 files changed, 10 insertions, 22 deletions
@@ -5,30 +5,18 @@ AES tools Simple AES implementation and utilities. -Building --------- - -Create the build files using CMake and build using your native build tools -(Visual Studio/make/etc.). +Development +----------- -* **Prerequisites.** +Build using CMake. Depends on Boost.{Filesystem,Program_options}. -* **Customization.** -The runtime libraries are linked statically by default. -Therefore, the Boost libraries must also link them statically. -You can link the runtime dynamically by passing `-D CC_STATIC_RUNTIME=OFF` to -`cmake`. -* **Example.** -Using Visual Studio 2015 (targeting x86), build & install the release version -to C:\aes-tools: - - > cmake -G "Visual Studio 14 2015" -A Win32 ^ - -D BOOST_ROOT=C:\path\to\boost ^ - C:\path\to\aes-tools - ... - - > cmake --build . --config Release --target install -- /m - ... + +There's a Makefile with useful shortcuts to build the project in the .build/ +directory along with the dependencies: + + make deps + make build + make test Usage on older CPUs ------------------- |