Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch complete
Excluding Merge-Ins
This is equivalent to a diff from
e48bd28150
to 31958e69fc
2024-09-06
| | |
22:25 |
|
Leaf
check-in: 31958e69fc user: fifr tags: complete
|
22:17 |
|
check-in: 55dae85334 user: fifr tags: complete
|
22:17 |
|
Leaf
check-in: e48bd28150 user: fifr tags: trunk
|
2024-05-27
| | |
07:33 |
|
Closed-Leaf
check-in: ac1ca10256 user: fifr tags: kf6
|
2024-04-08
| | |
21:52 |
|
check-in: 66a4c93811 user: fifr tags: trunk
|
| | |
Added 3rdparty/graph/CMakeLists.txt.
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
cmake_minimum_required(VERSION 3.6)
project(
fifrgraph
VERSION 0.1.0
LANGUAGES CXX)
add_subdirectory(src/fifr/graph)
# Enable testing if this is toplevel.
if ( BUILD_TESTING AND (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) )
enable_testing()
add_subdirectory(tests)
endif ()
# package stuff
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
"${CMAKE_CURRENT_BINARY_DIR}/FifrGraph/FifrGraphConfigVersion.cmake"
VERSION ${fifrgraph_VERSION}
COMPATIBILITY SameMajorVersion
)
export(
EXPORT FifrGraphTargets
FILE "${CMAKE_CURRENT_BINARY_DIR}/FifrGraph/FifrGraphTargets.cmake"
NAMESPACE Fifr::
)
configure_file(cmake/FifrGraphConfig.cmake
"${CMAKE_CURRENT_BINARY_DIR}/FifrGraph/FifrGraphConfig.cmake"
COPYONLY)
set(ConfigPackageLocation lib/cmake/FifrGraph)
install(EXPORT FifrGraphTargets
FILE FifrGraphTargets.cmake
NAMESPACE Fifr::
DESTINATION ${ConfigPackageLocation}
)
install(
FILES
cmake/FifrGraphConfig.cmake
"${CMAKE_CURRENT_BINARY_DIR}/FifrGraph/FifrGraphConfigVersion.cmake"
DESTINATION ${ConfigPackageLocation}
COMPONENT
devel
)
|
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Added 3rdparty/graph/cmake/FifrGraphConfig.cmake.
|
1
|
+
|
include("${CMAKE_CURRENT_LIST_DIR}/FifrGraphTargets.cmake")
|
Added 3rdparty/graph/src/fifr/graph/AttributedGraph.hxx.