add_library(platform src/policy.cpp src/health_check.cpp)
target_link_libraries(platform PUBLIC common)
target_link_libraries(platform PUBLIC pthread)
target_link_libraries(platform PUBLIC MESA_handle_logger)
target_link_libraries(platform PUBLIC MESA_prof_load)
target_link_libraries(platform PUBLIC maatframe)
target_link_libraries(platform PUBLIC cjson)
target_include_directories(platform PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include/)
add_executable(sce src/main.cpp)
target_link_libraries(sce PUBLIC platform)
install(TARGETS sce RUNTIME DESTINATION bin COMPONENT Program)
add_subdirectory(test)