diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-12-21 15:08:54 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-12-21 15:08:54 +0100 |
commit | 3dbc1a7e8a046c9bc5e39e8fa1817ee971b96bb4 (patch) | |
tree | f6675b692a8acac2a1de853a2df67f3ee8b6c0a1 /lib/cryptopp | |
parent | You could now only get fish from non-source blocks. Fixed it. (diff) | |
parent | fixed lua dynamic library (diff) | |
download | cuberite-3dbc1a7e8a046c9bc5e39e8fa1817ee971b96bb4.tar cuberite-3dbc1a7e8a046c9bc5e39e8fa1817ee971b96bb4.tar.gz cuberite-3dbc1a7e8a046c9bc5e39e8fa1817ee971b96bb4.tar.bz2 cuberite-3dbc1a7e8a046c9bc5e39e8fa1817ee971b96bb4.tar.lz cuberite-3dbc1a7e8a046c9bc5e39e8fa1817ee971b96bb4.tar.xz cuberite-3dbc1a7e8a046c9bc5e39e8fa1817ee971b96bb4.tar.zst cuberite-3dbc1a7e8a046c9bc5e39e8fa1817ee971b96bb4.zip |
Diffstat (limited to '')
-rw-r--r-- | lib/cryptopp/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/cryptopp/CMakeLists.txt b/lib/cryptopp/CMakeLists.txt new file mode 100644 index 000000000..3497b3346 --- /dev/null +++ b/lib/cryptopp/CMakeLists.txt @@ -0,0 +1,14 @@ + +cmake_minimum_required (VERSION 2.6) +project (cryptopp) + +if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DCRYPTOPP_DISABLE_ASM") +endif() +include_directories ("${PROJECT_SOURCE_DIR}/../../src/") + +file(GLOB cryptopp_SRC + "*.cpp" +) + +add_library(cryptopp ${cryptopp_SRC}) |