-
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.
Merge pull request #5 from QuangHaiNguyen/change_folder_name
Change folder name
- Loading branch information
Showing
127 changed files
with
90 additions
and
49 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
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,75 @@ | ||
# ---------------------------------------------------------------------------- | ||
# Author: Hai Nguyen | ||
# Name: easy_embedded_lib | ||
# License: This file is published under the license described in LICENSE.md | ||
# Description: PLEASE ADD TEXT HERE | ||
# ---------------------------------------------------------------------------- | ||
|
||
add_library(easy_embedded_lib STATIC) | ||
|
||
message(STATUS "**********************************************************") | ||
message(STATUS "* Generating easy_embedded library build files") | ||
message(STATUS "**********************************************************") | ||
|
||
|
||
set(FRAMEWORK_ROOT_DIR ${CMAKE_SOURCE_DIR}/easy_embedded) | ||
|
||
|
||
# Include -------------------------------------------------------------------- | ||
include(features.cmake) | ||
|
||
|
||
# Sub directory -------------------------------------------------------------- | ||
add_subdirectory(targets) | ||
add_subdirectory(utilities) | ||
add_subdirectory(service) | ||
add_subdirectory(app) | ||
|
||
|
||
# Source files --------------------------------------------------------------- | ||
target_sources(easy_embedded_lib | ||
PRIVATE | ||
app/ezSdk.c | ||
) | ||
|
||
|
||
# Definitions ---------------------------------------------------------------- | ||
target_compile_definitions(easy_embedded_lib | ||
PUBLIC | ||
# Please add definitions here | ||
PRIVATE | ||
WINDOWS_TARGET=$<BOOL:${ENABLE_WINDOWS_TARGET}> | ||
LINUX_TARGET=$<BOOL:${ENABLE_LINUX_TARGET}> | ||
EMBEDDED_TARGET=$<BOOL:${ENABLE_EMBEDDED_TARGET}> | ||
) | ||
|
||
|
||
# Include directory ----------------------------------------------------------- | ||
target_include_directories(easy_embedded_lib | ||
PUBLIC | ||
${CMAKE_CURRENT_LIST_DIR} | ||
${FRAMEWORK_ROOT_DIR} | ||
PRIVATE | ||
# Please add private folders here | ||
INTERFACE | ||
# Please add interface folders here | ||
) | ||
|
||
|
||
# Link libraries ------------------------------------------------------------- | ||
target_link_libraries(easy_embedded_lib | ||
PUBLIC | ||
ez_utilities_lib | ||
$<$<BOOL:${ENABLE_EZ_EVENT_NOTIFIER}>:ez_event_notifier_lib> | ||
$<$<BOOL:${ENABLE_EZ_KERNEL}>:ez_kernel> | ||
$<$<BOOL:${ENABLE_EZ_HAL_DRIVER}>:ez_driver> | ||
$<$<BOOL:${ENABLE_DATA_MODEL}>:ez_data_model_lib> | ||
$<$<BOOL:${ENABLE_LITTLE_FS}>:littlefs> | ||
ez_app | ||
PRIVATE | ||
# Please add private libraries | ||
INTERFACE | ||
# Please add interface libraries | ||
) | ||
|
||
# End of file |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
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
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