2020-04-24 01:25:09 +00:00
|
|
|
cmake_minimum_required(VERSION 3.11)
|
2020-09-30 03:43:43 +00:00
|
|
|
enable_language(CXX)
|
2020-04-24 01:25:09 +00:00
|
|
|
project(General)
|
|
|
|
set(MINGW_PATH $ENV{MINGW_TOOLCHAIN})
|
|
|
|
message("path is " ${MINGW_PATH})
|
|
|
|
message( "libevent path " ${CONAN_LIBEVENT_ROOT})
|
|
|
|
message( "current compiler " ${CMAKE_CXX_COMPILER_ID})
|
|
|
|
|
|
|
|
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
|
|
# using Clang
|
|
|
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
2020-05-06 10:09:59 +00:00
|
|
|
add_compile_options(-Wall)
|
|
|
|
add_compile_options(-Wsign-compare)
|
|
|
|
add_compile_options(-Werror)
|
|
|
|
add_compile_options(-Wno-unused-function)
|
|
|
|
add_compile_options(-Wno-misleading-indentation)
|
|
|
|
add_compile_options(-Wno-format-overflow)
|
|
|
|
|
2020-04-24 01:25:09 +00:00
|
|
|
# using GCC
|
|
|
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel")
|
|
|
|
# using Intel C++
|
|
|
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
2020-05-06 05:46:44 +00:00
|
|
|
add_compile_options("/std:c++17")
|
2020-04-24 01:25:09 +00:00
|
|
|
# using Visual Studio C++
|
|
|
|
endif()
|
|
|
|
|
|
|
|
SET(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/obj)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
INCLUDE_DIRECTORIES (./)
|
|
|
|
INCLUDE_DIRECTORIES (inc)
|
|
|
|
INCLUDE_DIRECTORIES (encrypt)
|
|
|
|
INCLUDE_DIRECTORIES (pattern)
|
|
|
|
include_directories(third/include)
|
|
|
|
aux_source_directory(src DIRSRCS)
|
|
|
|
aux_source_directory(src/pattern PaternSrc)
|
|
|
|
|
|
|
|
|
2020-06-10 13:23:42 +00:00
|
|
|
add_library(General OBJECT ${DIRSRCS} ${PaternSrc} src/pattern/signleton.hpp src/pattern/cmd.hpp src/pattern/Observer.hpp src/pattern/stratergy.hpp "src/pattern/adapter.hpp" src/encrypt/base64.cpp src/encrypt/base64.h src/encrypt/aes.cpp src/encrypt/aes.h src/encrypt/rsa.cpp
|
2020-05-22 03:17:38 +00:00
|
|
|
src/math/BigInt.hpp src/net/TcpClient.cpp src/net/TcpClient.h src/net/PackageReceiver.cpp src/net/PackageReceiver.h src/function/Timer.cpp src/function/btree.cpp src/function/btree.h src/algorithm/sorter.hpp)
|