Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
faust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.4.
Show more breadcrumbs
faust group
faust
Commits
a1202218
Commit
a1202218
authored
2 years ago
by
hhakim
Browse files
Options
Downloads
Patches
Plain Diff
Add a script to download misc/data instead of relying on local data.
parent
6139886c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
misc/download_unzip_faust_misc_data.cmake
+8
-0
8 additions, 0 deletions
misc/download_unzip_faust_misc_data.cmake
misc/test/CMakeLists.txt
+2
-0
2 additions, 0 deletions
misc/test/CMakeLists.txt
with
10 additions
and
0 deletions
misc/download_unzip_faust_misc_data.cmake
0 → 100644
+
8
−
0
View file @
a1202218
if
(
NOT EXISTS faust_misc_data.zip
)
message
(
STATUS
"Downloading FAµST misc data archive (needed for tests)."
)
file
(
DOWNLOAD https://gitlab.inria.fr/faustgrp/gforge_files/-/raw/master/faust_misc_data-2023-07-11.zip faust_misc_data.zip SHOW_PROGRESS
)
endif
()
if
(
NOT EXISTS data
)
file
(
ARCHIVE_EXTRACT INPUT faust_misc_data.zip DESTINATION
${
FAUST_MISC_DIR
}
)
endif
()
This diff is collapsed.
Click to expand it.
misc/test/CMakeLists.txt
+
2
−
0
View file @
a1202218
...
...
@@ -2,6 +2,8 @@
if
(
BUILD_TESTING
)
message
(
STATUS
"TEST CMAKE_CXX_FLAGS=
${
CMAKE_CXX_FLAGS
}
"
)
include
(
${
FAUST_MISC_DIR
}
/download_unzip_faust_misc_data.cmake
)
#${FAUST_EXCEPTION_SRC_DIR}
include_directories
(
${
FAUST_SRC_LINEAR_OPERATOR_DIR
}
${
FAUST_LINEAR_OPERATOR_CPU_SRC_DIR
}
${
FAUST_ALGORITHM_CONSTRAINT_SRC_DIR
}
${
FAUST_ALGORITHM_FACTORIZATION_SRC_DIR
}
${
EIGEN_INC_DIR
}
${
FAUST_UTILS_SRC_DIR
}
)
include_directories
(
${
FAUST_SRC_LINEAR_OPERATOR_GPU2_DIR
}
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment