Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Chameleon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
Chameleon
Merge requests
!469
ci: add cmake export and pkg-config checks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ci: add cmake export and pkg-config checks
fpruvost/chameleon:checkpkg
into
master
Overview
7
Commits
3
Pipelines
0
Changes
10
Merged
PRUVOST Florent
requested to merge
fpruvost/chameleon:checkpkg
into
master
10 months ago
Overview
7
Commits
3
Pipelines
0
Changes
10
Expand
0
0
Merge request reports
Compare
master
version 12
3aa21c46
10 months ago
version 11
1b6c07b5
10 months ago
version 10
d630790a
10 months ago
version 9
1888187b
10 months ago
version 8
88fd7dae
10 months ago
version 7
0dff34ad
10 months ago
version 6
9985b0a4
10 months ago
version 5
796ca976
10 months ago
version 4
91492794
10 months ago
version 3
04ed8e4a
10 months ago
version 2
50b10804
10 months ago
version 1
1b2b8956
10 months ago
master (base)
and
latest version
latest version
710b5ef4
3 commits,
10 months ago
version 12
3aa21c46
3 commits,
10 months ago
version 11
1b6c07b5
3 commits,
10 months ago
version 10
d630790a
11 commits,
10 months ago
version 9
1888187b
10 commits,
10 months ago
version 8
88fd7dae
9 commits,
10 months ago
version 7
0dff34ad
6 commits,
10 months ago
version 6
9985b0a4
5 commits,
10 months ago
version 5
796ca976
6 commits,
10 months ago
version 4
91492794
4 commits,
10 months ago
version 3
04ed8e4a
2 commits,
10 months ago
version 2
50b10804
2 commits,
10 months ago
version 1
1b2b8956
1 commit,
10 months ago
10 files
+
237
−
296
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
.gitlab/check_link/CMakeLists.txt
0 → 100644
+
37
−
0
Options
###
#
# @copyright 2013-2024 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
# Univ. Bordeaux. All rights reserved.
#
# @version 1.3.0
# @author Mathieu Faverge
# @author Florent Pruvost
# @date 2024-06-13
#
###
cmake_minimum_required
(
VERSION 3.5
)
project
(
LINK_CHAMELEON C CXX Fortran
)
# look for CHAMELEON on the system
# Hint: use CMAKE_PREFIX_PATH (env. var. or cmake var.) to the installation
# directory of CHAMELEON if not installed in a standard path
find_package
(
CHAMELEON REQUIRED
)
if
(
TARGET CHAMELEON::chameleon
)
message
(
STATUS
"CHAMELEON_BIN_DIR
${
CHAMELEON_BIN_DIR
}
"
)
message
(
STATUS
"CHAMELEON_INC_DIR
${
CHAMELEON_INC_DIR
}
"
)
message
(
STATUS
"CHAMELEON_LIB_DIR
${
CHAMELEON_LIB_DIR
}
"
)
else
()
message
(
FATAL_ERROR
"Target CHAMELEON::chameleon is not found, check your CHAMELEONConfig.cmake."
)
endif
()
set
(
CMAKE_BUILD_RPATH
${
CHAMELEON_LIB_DIR
}
)
add_executable
(
link_chameleon_c
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../example/link_chameleon/link_chameleon.c
)
target_link_libraries
(
link_chameleon_c PRIVATE CHAMELEON::chameleon
)
# Launch executables with ctest
enable_testing
()
include
(
CTest
)
add_test
(
link_chameleon_c link_chameleon_c
)
Loading