diff options
author | Loïc Collignon <loic.collignon@iot.bzh> | 2018-06-05 10:29:47 +0200 |
---|---|---|
committer | Loïc Collignon <loic.collignon@iot.bzh> | 2018-06-12 15:26:21 +0200 |
commit | 322f8932476eda944c7d3ac65eafde12c69b2ae9 (patch) | |
tree | 3146f053d8f3f8f8324d7e41493b929d348a3f9c /ahl-policy/CMakeLists.txt | |
parent | 545c14e62971b23c704bc3d7f696e934e330656d (diff) |
Rewrite of the High Level API using the new HAL model
The new HAL model need the High Level API to be rewritten.
This is the first version of this rewrite, still in progress
but should work.
Change-Id: I5c94cf39d84cefae6b7a179c09d95e645673e8d4
Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'ahl-policy/CMakeLists.txt')
-rw-r--r-- | ahl-policy/CMakeLists.txt | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/ahl-policy/CMakeLists.txt b/ahl-policy/CMakeLists.txt index 346669d..4446e5e 100644 --- a/ahl-policy/CMakeLists.txt +++ b/ahl-policy/CMakeLists.txt @@ -18,28 +18,28 @@ # Add target to project dependency list -PROJECT_TARGET_ADD(ahl-policy) +#PROJECT_TARGET_ADD(ahl-policy) # Define project Targets - ADD_LIBRARY(${TARGET_NAME} STATIC ahl-policy.c) + # ADD_LIBRARY(${TARGET_NAME} STATIC ahl-policy.c) - if($ENV{AK_DEMO}) - add_definitions(-DAK_POLICY_DEMO) - endif() + #if($ENV{AK_DEMO}) + #add_definitions(-DAK_POLICY_DEMO) + #endif() # Define target includes - TARGET_INCLUDE_DIRECTORIES(${TARGET_NAME} - PUBLIC ${GLIB_PKG_INCLUDE_DIRS} - ) + #TARGET_INCLUDE_DIRECTORIES(${TARGET_NAME} + # PUBLIC ${GLIB_PKG_INCLUDE_DIRS} + #) # Library dependencies (include updates automatically) - TARGET_LINK_LIBRARIES(${TARGET_NAME} - ahl-utilities - afb-utilities - ) + #TARGET_LINK_LIBRARIES(${TARGET_NAME} + # ahl-utilities + # afb-utilities + #) # Define target includes for this target client - TARGET_INCLUDE_DIRECTORIES(${TARGET_NAME} - PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} - ) + #TARGET_INCLUDE_DIRECTORIES(${TARGET_NAME} + # PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} + #) |