diff options
| author | Qiuwen Lu <[email protected]> | 2016-10-25 17:19:59 +0800 |
|---|---|---|
| committer | Qiuwen Lu <[email protected]> | 2016-10-25 17:19:59 +0800 |
| commit | 287e3ee0fc3ea5256cd33aef0d7c5d2487b841cf (patch) | |
| tree | cb0cb9469568b9d3d2a3e6092e2d55cae1cd242d /CMakeLists.txt | |
| parent | c1002e8d6fe90c753b7e6198476391b22d14194a (diff) | |
增加协议栈实现,在Service中完成协议栈初始化流程。修改了mr_device的open方式,集中打开参数。
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 21f4e76..6b7fc96 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,19 +31,20 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${EXTRA_CXX_FLAGS}") # Default Install Destination Directory # set(CMAKE_INSTALL_PREFIX /opt/iiesoft/marsio) add_definitions(-fPIC -Wall) -add_definitions(-D_GNU_SOURCE) +add_definitions(-D_GNU_SOURCE -D__STDC_LIMIT_MACROS) include_directories(include) add_subdirectory(${CMAKE_SOURCE_DIR}/support ${CMAKE_BINARY_DIR}/support) add_subdirectory(${CMAKE_SOURCE_DIR}/include) add_subdirectory(${CMAKE_SOURCE_DIR}/runtime) add_subdirectory(${CMAKE_SOURCE_DIR}/core) +add_subdirectory(${CMAKE_SOURCE_DIR}/stack) add_subdirectory(${CMAKE_SOURCE_DIR}/service) add_subdirectory(${CMAKE_SOURCE_DIR}/slave) add_subdirectory(${CMAKE_SOURCE_DIR}/pag) #add_subdirectory(${CMAKE_SOURCE_DIR}/examples) #add_subdirectory(${CMAKE_SOURCE_DIR}/tools) -#add_subdirectory(${CMAKE_SOURCE_DIR}/test) +add_subdirectory(${CMAKE_SOURCE_DIR}/test) add_subdirectory(${CMAKE_SOURCE_DIR}/conf) if(BUILD_TESTS) |
