spl-core 7.2.4__py3-none-any.whl → 7.2.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- spl_core/__init__.py +1 -1
- spl_core/kickstart/templates/project/CMakeLists.txt +46 -46
- {spl_core-7.2.4.dist-info → spl_core-7.2.6.dist-info}/METADATA +2 -2
- {spl_core-7.2.4.dist-info → spl_core-7.2.6.dist-info}/RECORD +7 -7
- {spl_core-7.2.4.dist-info → spl_core-7.2.6.dist-info}/WHEEL +1 -1
- {spl_core-7.2.4.dist-info → spl_core-7.2.6.dist-info}/LICENSE +0 -0
- {spl_core-7.2.4.dist-info → spl_core-7.2.6.dist-info}/entry_points.txt +0 -0
spl_core/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "7.2.
|
|
1
|
+
__version__ = "7.2.6"
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
# cmake project definition
|
|
2
|
-
cmake_minimum_required(VERSION 3.24.0)
|
|
3
|
-
cmake_policy(VERSION 3.24)
|
|
4
|
-
|
|
5
|
-
# configure the current variant to be build
|
|
6
|
-
set(BUILD_KIT prod CACHE STRING "Target Group to build.")
|
|
7
|
-
|
|
8
|
-
include(${CMAKE_SOURCE_DIR}/variants/${VARIANT}/config.cmake)
|
|
9
|
-
|
|
10
|
-
if(BUILD_KIT STREQUAL prod)
|
|
11
|
-
project(${VARIANT} C ASM)
|
|
12
|
-
else()
|
|
13
|
-
# In case of test the project is a C++ project due to GTest usage
|
|
14
|
-
project(${VARIANT} C ASM CXX)
|
|
15
|
-
endif()
|
|
16
|
-
|
|
17
|
-
# Fetch all external dependencies into modules directory
|
|
18
|
-
set(FETCHCONTENT_BASE_DIR ${CMAKE_SOURCE_DIR}/build/modules CACHE INTERNAL "")
|
|
19
|
-
set(FETCHCONTENT_QUIET FALSE)
|
|
20
|
-
include(FetchContent)
|
|
21
|
-
|
|
22
|
-
# Include spl-core
|
|
23
|
-
if(DEFINED ENV{SPLCORE_PATH})
|
|
24
|
-
message(WARNING "SPLCORE_PATH defined! Use fixed SPL-CORE version from: $ENV{SPLCORE_PATH}")
|
|
25
|
-
include($ENV{SPLCORE_PATH}/spl.cmake)
|
|
26
|
-
else()
|
|
27
|
-
# Fetch spl-core
|
|
28
|
-
FetchContent_Declare(
|
|
29
|
-
spl-core
|
|
30
|
-
GIT_REPOSITORY https://github.com/avengineers/spl-core.git
|
|
31
|
-
GIT_TAG develop
|
|
32
|
-
)
|
|
33
|
-
FetchContent_MakeAvailable(spl-core)
|
|
34
|
-
|
|
35
|
-
# Include spl-core
|
|
36
|
-
include(${spl-core_SOURCE_DIR}/
|
|
37
|
-
endif()
|
|
38
|
-
|
|
39
|
-
include(${CMAKE_SOURCE_DIR}/variants/${VARIANT}/parts.cmake)
|
|
40
|
-
|
|
41
|
-
# add all components' include directories to the include paths of each component
|
|
42
|
-
foreach(component_name ${COMPONENT_NAMES})
|
|
43
|
-
if(TARGET ${component_name})
|
|
44
|
-
target_include_directories(${component_name} PUBLIC ${target_include_directories__INCLUDES})
|
|
45
|
-
endif()
|
|
46
|
-
endforeach()
|
|
1
|
+
# cmake project definition
|
|
2
|
+
cmake_minimum_required(VERSION 3.24.0)
|
|
3
|
+
cmake_policy(VERSION 3.24)
|
|
4
|
+
|
|
5
|
+
# configure the current variant to be build
|
|
6
|
+
set(BUILD_KIT prod CACHE STRING "Target Group to build.")
|
|
7
|
+
|
|
8
|
+
include(${CMAKE_SOURCE_DIR}/variants/${VARIANT}/config.cmake)
|
|
9
|
+
|
|
10
|
+
if(BUILD_KIT STREQUAL prod)
|
|
11
|
+
project(${VARIANT} C ASM)
|
|
12
|
+
else()
|
|
13
|
+
# In case of test the project is a C++ project due to GTest usage
|
|
14
|
+
project(${VARIANT} C ASM CXX)
|
|
15
|
+
endif()
|
|
16
|
+
|
|
17
|
+
# Fetch all external dependencies into modules directory
|
|
18
|
+
set(FETCHCONTENT_BASE_DIR ${CMAKE_SOURCE_DIR}/build/modules CACHE INTERNAL "")
|
|
19
|
+
set(FETCHCONTENT_QUIET FALSE)
|
|
20
|
+
include(FetchContent)
|
|
21
|
+
|
|
22
|
+
# Include spl-core
|
|
23
|
+
if(DEFINED ENV{SPLCORE_PATH})
|
|
24
|
+
message(WARNING "SPLCORE_PATH defined! Use fixed SPL-CORE version from: $ENV{SPLCORE_PATH}")
|
|
25
|
+
include($ENV{SPLCORE_PATH}/spl.cmake)
|
|
26
|
+
else()
|
|
27
|
+
# Fetch spl-core
|
|
28
|
+
FetchContent_Declare(
|
|
29
|
+
spl-core
|
|
30
|
+
GIT_REPOSITORY https://github.com/avengineers/spl-core.git
|
|
31
|
+
GIT_TAG develop
|
|
32
|
+
)
|
|
33
|
+
FetchContent_MakeAvailable(spl-core)
|
|
34
|
+
|
|
35
|
+
# Include spl-core
|
|
36
|
+
include(${spl-core_SOURCE_DIR}/src/spl_core/spl.cmake)
|
|
37
|
+
endif()
|
|
38
|
+
|
|
39
|
+
include(${CMAKE_SOURCE_DIR}/variants/${VARIANT}/parts.cmake)
|
|
40
|
+
|
|
41
|
+
# add all components' include directories to the include paths of each component
|
|
42
|
+
foreach(component_name ${COMPONENT_NAMES})
|
|
43
|
+
if(TARGET ${component_name})
|
|
44
|
+
target_include_directories(${component_name} PUBLIC ${target_include_directories__INCLUDES})
|
|
45
|
+
endif()
|
|
46
|
+
endforeach()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: spl-core
|
|
3
|
-
Version: 7.2.
|
|
3
|
+
Version: 7.2.6
|
|
4
4
|
Summary: Software Product Line Support for CMake
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Avengineers
|
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
18
18
|
Requires-Dist: cookiecutter (==2.1.1)
|
|
19
19
|
Requires-Dist: doxysphinx (>=3.3,<4.0)
|
|
20
20
|
Requires-Dist: gcovr (>=8.3,<9.0)
|
|
21
|
-
Requires-Dist: hammocking (>=0.
|
|
21
|
+
Requires-Dist: hammocking (>=0.6,<0.7)
|
|
22
22
|
Requires-Dist: kconfiglib (>=14.1,<15.0)
|
|
23
23
|
Requires-Dist: mlx-traceability (>=10.0,<11.0)
|
|
24
24
|
Requires-Dist: myst-parser (>=0.16)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
spl_core/__init__.py,sha256=
|
|
1
|
+
spl_core/__init__.py,sha256=cu_bGjWGueXcuQtuac4L0Cd2TITUBMzYwTFAm67Tk0I,22
|
|
2
2
|
spl_core/__run.py,sha256=DphnN7_Bjiw_mOOztsHxTDHS8snz1g2MMWAaJpZxPKM,361
|
|
3
3
|
spl_core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
spl_core/common/command_line_executor.py,sha256=GHIMpNiMD_eP44vq7L_HiC08aKt7lgW_wn_omU6REwQ,2217
|
|
@@ -37,7 +37,7 @@ spl_core/kickstart/templates/project/.vscode/extensions.json,sha256=49RYati_P9i3
|
|
|
37
37
|
spl_core/kickstart/templates/project/.vscode/launch.json,sha256=30-tsNapUNNIvVDohdIf4SEnHrHh8qbWuTjLJjsMcEY,1103
|
|
38
38
|
spl_core/kickstart/templates/project/.vscode/settings.json,sha256=84PASkysrQEcl9NZNJrYvWH-KqOd9HnAbTj0Hpa1SQM,1319
|
|
39
39
|
spl_core/kickstart/templates/project/.vscode/tasks.json,sha256=fPaiY-vpI-3wMK0dpc3LZma4-YYyaI_xc6uQrEUf6sw,3434
|
|
40
|
-
spl_core/kickstart/templates/project/CMakeLists.txt,sha256=
|
|
40
|
+
spl_core/kickstart/templates/project/CMakeLists.txt,sha256=oBGnsNqfmMuXy69SdoGEfYzw5iLkqEhsK47UgJ0ycxA,1507
|
|
41
41
|
spl_core/kickstart/templates/project/README.md,sha256=k-P_SycFIRnRmjjUoAiDrRF8Gg1Te-qErAX-pgtYuqg,310
|
|
42
42
|
spl_core/kickstart/templates/project/bootstrap.json,sha256=JPci9W9ezE6A_hK5hjCa5ymwM80wKM1IxM0jDan49sM,87
|
|
43
43
|
spl_core/kickstart/templates/project/build.bat,sha256=HlOqePYRoHTrp7v6oQ551dXI-qCymGCG0gQ9Au6bpos,73
|
|
@@ -61,8 +61,8 @@ spl_core/main.py,sha256=_hL4j155WZMXog_755bgAH1PeUwvTdJZvVdVw9EWhvo,1225
|
|
|
61
61
|
spl_core/spl.cmake,sha256=W8h-Zj-N302qxMrRG8MhoEkJ0io92bWGp4Y5r8LBQnc,4535
|
|
62
62
|
spl_core/test_utils/base_variant_test_runner.py,sha256=E5EtAX5qTLQbofIZ9eZoCx2SNd1CTm1HtEKqEn014fA,3493
|
|
63
63
|
spl_core/test_utils/spl_build.py,sha256=OO7rIZpBb7EP87D39NeTK4XH17x3xNfwRI5YHPBvGgY,6041
|
|
64
|
-
spl_core-7.2.
|
|
65
|
-
spl_core-7.2.
|
|
66
|
-
spl_core-7.2.
|
|
67
|
-
spl_core-7.2.
|
|
68
|
-
spl_core-7.2.
|
|
64
|
+
spl_core-7.2.6.dist-info/LICENSE,sha256=UjjA0o8f5tT3wVm7qodTLAhPWLl6kgVyn9FPAd1VeYY,1099
|
|
65
|
+
spl_core-7.2.6.dist-info/METADATA,sha256=DemDUiemFzMZpCkqczY9GI1qJVEI5UZPvI195vj_Dw4,5156
|
|
66
|
+
spl_core-7.2.6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
67
|
+
spl_core-7.2.6.dist-info/entry_points.txt,sha256=18_sdVY93N1GVBiAHxQ_F9ZM-bBvOmVMOMn7PNe2EqU,45
|
|
68
|
+
spl_core-7.2.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|