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