CMakeLists.txt 1.9 KB
Newer Older
S
up  
superjom 已提交
1
cmake_minimum_required(VERSION 3.2)
S
superjom 已提交
2 3
project(VisualDL)

S
superjom 已提交
4 5 6 7 8 9
find_program(CCACHE_FOUND ccache)
if(CCACHE_FOUND)
  set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
  set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif(CCACHE_FOUND)

Q
Qiao Longfei 已提交
10
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
S
superjom 已提交
11
set(CMAKE_CXX_STANDARD 11)
S
superjom 已提交
12
set(CMAKE_CXX_FLAGS "-fPIC")
S
superjom 已提交
13 14


Q
Qiao Longfei 已提交
15 16 17 18 19
set(THIRD_PARTY_PATH "${CMAKE_BINARY_DIR}/third_party" CACHE STRING
        "A path setting third party libraries download & build directories.")

################################ Configurations #######################################
option(WITH_TESTING     "Compile VisualDL with unit testing"        ON)
S
superjom 已提交
20

S
superjom 已提交
21

Q
Qiao Longfei 已提交
22 23 24 25 26 27 28 29 30 31 32
include(external/zlib)      # download, build, install zlib
include(external/gflags)    # download, build, install gflags
include(external/glog)      # download, build, install glog
include(external/gtest)     # download, build, install gtest
include(external/pybind11)  # download pybind11
include(external/protobuf)  # download, build, install protobuf
include(external/python)    # find python and set path

include_directories(${PROJECT_SOURCE_DIR})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(${PROJECT_SOURCE_DIR}/thirdparty/local/include)
S
superjom 已提交
33

S
superjom 已提交
34 35
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/visualdl/storage)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/visualdl/logic)
S
superjom 已提交
36 37

add_executable(vl_test
S
superjom 已提交
38 39 40 41 42 43
        ${PROJECT_SOURCE_DIR}/visualdl/test.cc
        ${PROJECT_SOURCE_DIR}/visualdl/storage/storage_test.cc
        ${PROJECT_SOURCE_DIR}/visualdl/utils/test_concurrency.cc
        ${PROJECT_SOURCE_DIR}/visualdl/logic/im_test.cc
        ${PROJECT_SOURCE_DIR}/visualdl/utils/concurrency.h
        ${PROJECT_SOURCE_DIR}/visualdl/utils/filesystem.h
S
superjom 已提交
44
        )
S
superjom 已提交
45
target_link_libraries(vl_test storage im gtest glog protobuf gflags pthread)
S
superjom 已提交
46 47 48 49

enable_testing ()

add_test(NAME vstest COMMAND vl_test)