This commit is contained in:
16 changed files with 296 additions and 143 deletions

View File

@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.0)
cmake_policy(SET CMP0020 NEW)
find_package(SM REQUIRED)
add_executable(block_choice block_choice.cpp)
target_include_directories(block_choice PUBLIC ${SMBRICKS_INCLUDES} ${PIP_INCLUDES})
target_link_libraries(block_choice ${PIP_LIBRARY})
add_executable(smbusdata_crash_test smbusdata_crash_test.cpp)
target_include_directories(smbusdata_crash_test PUBLIC ${SMBRICKS_INCLUDES} ${PIP_INCLUDES})
target_link_libraries(smbusdata_crash_test SMBricks_shared ${PIP_LIBRARY} ${PIP_CRYPT_LIBRARY})