diff options
author | 2021-03-23 14:58:34 +0100 | |
---|---|---|
committer | 2021-03-30 15:23:55 +0000 | |
commit | a5a6ffb506aa3c2a0c7fe8fd09abf3f737984aa5 (patch) | |
tree | cfb82e9667e287b08c665d4d671b6e767490d403 /cmake | |
parent | a070b0de9f9e9cbca150eea4eda74757ca588bed (diff) |
[HICN-645] Fix data structures to support hicn-light-daemon and hicn-light-control communication
The daemon should be able to start, receive commands from hicn-light-control and execute them.
Signed-off-by: Enrico Loparco (eloparco) <eloparco@cisco.com>
Change-Id: I0ca5bb3d9bdfb37ac8cfa9f671f6c162c9a394f5
Signed-off-by: Enrico Loparco (eloparco) <eloparco@cisco.com>
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Modules/GTestImport.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmake/Modules/GTestImport.cmake b/cmake/Modules/GTestImport.cmake index 938dec786..cdca922d6 100644 --- a/cmake/Modules/GTestImport.cmake +++ b/cmake/Modules/GTestImport.cmake @@ -19,6 +19,12 @@ ExternalProject_Add(gtest URL https://github.com/google/googletest/archive/v1.10.x.zip PREFIX ${CMAKE_BINARY_DIR}/gtest INSTALL_COMMAND "" + + # Necessary to build using ninja + BUILD_BYPRODUCTS "${CMAKE_BINARY_DIR}/gtest/src/gtest-build/lib/libgmock.a" + BUILD_BYPRODUCTS "${CMAKE_BINARY_DIR}/gtest/src/gtest-build/lib/libgmock_main.a" + BUILD_BYPRODUCTS "${CMAKE_BINARY_DIR}/gtest/src/gtest-build/lib/libgtest_main.a" + BUILD_BYPRODUCTS "${CMAKE_BINARY_DIR}/gtest/src/gtest-build/lib/libgtest.a" ) ExternalProject_Get_Property(gtest source_dir binary_dir) |