-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes for validation apps to build (#280)
Fixes for validation apps to build Signed-off-by: Milosz Linkiewicz <[email protected]>
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# SPDX-FileCopyrightText: Copyright (c) 2024 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
cmake_minimum_required(VERSION 3.16) | ||
project(McmDPSdk_Validation VERSION 0.1.0 | ||
DESCRIPTION "MCM DP SDK Library Validation Code" | ||
LANGUAGES C | ||
) | ||
|
||
set(CMAKE_C_STANDARD 11) | ||
|
||
add_executable(recver_val recver_val.c common.c) | ||
target_include_directories(recver_val PRIVATE ../include) | ||
target_link_libraries(recver_val PRIVATE mcm_dp) | ||
|
||
add_executable(sender_val sender_val.c common.c) | ||
target_include_directories(sender_val PRIVATE ../include) | ||
target_link_libraries(sender_val PRIVATE mcm_dp) | ||
|
||
install(TARGETS recver_val sender_val RUNTIME COMPONENT Runtime) |