forked from DMTF/libspdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use lower-case function name convention in Cmake files
Signed-off-by: Alex Teoh <[email protected]>
- Loading branch information
1 parent
f969c2c
commit 2f0da8f
Showing
101 changed files
with
1,205 additions
and
1,205 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
INCLUDE_DIRECTORIES(${LIBSPDM_DIR}/include) | ||
include_directories(${LIBSPDM_DIR}/include) | ||
|
||
SET(src_spdm_secured_message_lib | ||
set(src_spdm_secured_message_lib | ||
libspdm_secmes_context_data.c | ||
libspdm_secmes_encode_decode.c | ||
libspdm_secmes_key_exchange.c | ||
libspdm_secmes_session.c | ||
) | ||
|
||
ADD_LIBRARY(spdm_secured_message_lib STATIC ${src_spdm_secured_message_lib}) | ||
add_library(spdm_secured_message_lib STATIC ${src_spdm_secured_message_lib}) |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
INCLUDE_DIRECTORIES(${LIBSPDM_DIR}/include) | ||
include_directories(${LIBSPDM_DIR}/include) | ||
|
||
SET(src_spdm_transport_mctp_lib | ||
set(src_spdm_transport_mctp_lib | ||
libspdm_mctp_common.c | ||
libspdm_mctp_mctp.c | ||
) | ||
|
||
ADD_LIBRARY(spdm_transport_mctp_lib STATIC ${src_spdm_transport_mctp_lib}) | ||
add_library(spdm_transport_mctp_lib STATIC ${src_spdm_transport_mctp_lib}) |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
INCLUDE_DIRECTORIES(${LIBSPDM_DIR}/include) | ||
include_directories(${LIBSPDM_DIR}/include) | ||
|
||
SET(src_spdm_transport_pcidoe_lib | ||
set(src_spdm_transport_pcidoe_lib | ||
libspdm_doe_common.c | ||
libspdm_doe_pcidoe.c | ||
) | ||
|
||
ADD_LIBRARY(spdm_transport_pcidoe_lib STATIC ${src_spdm_transport_pcidoe_lib}) | ||
add_library(spdm_transport_pcidoe_lib STATIC ${src_spdm_transport_pcidoe_lib}) |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
SET(src_armbuild_lib | ||
set(src_armbuild_lib | ||
div64.c | ||
) | ||
|
||
ADD_LIBRARY(armbuild_lib STATIC ${src_armbuild_lib}) | ||
add_library(armbuild_lib STATIC ${src_armbuild_lib}) |
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
INCLUDE_DIRECTORIES(${LIBSPDM_DIR}/include | ||
include_directories(${LIBSPDM_DIR}/include | ||
${LIBSPDM_DIR}/include/hal) | ||
|
||
SET(src_debuglib | ||
set(src_debuglib | ||
debuglib.c | ||
) | ||
|
||
ADD_LIBRARY(debuglib STATIC ${src_debuglib}) | ||
add_library(debuglib STATIC ${src_debuglib}) |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
INCLUDE_DIRECTORIES(${LIBSPDM_DIR}/include | ||
include_directories(${LIBSPDM_DIR}/include | ||
${LIBSPDM_DIR}/include/hal) | ||
|
||
SET(src_debuglib_null | ||
set(src_debuglib_null | ||
debuglib.c | ||
) | ||
|
||
ADD_LIBRARY(debuglib_null STATIC ${src_debuglib_null}) | ||
add_library(debuglib_null STATIC ${src_debuglib_null}) |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
INCLUDE_DIRECTORIES(${LIBSPDM_DIR}/include | ||
include_directories(${LIBSPDM_DIR}/include | ||
${LIBSPDM_DIR}/include/hal) | ||
|
||
SET(src_malloclib | ||
set(src_malloclib | ||
malloclib.c | ||
) | ||
|
||
ADD_LIBRARY(malloclib STATIC ${src_malloclib}) | ||
add_library(malloclib STATIC ${src_malloclib}) |
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
Oops, something went wrong.