Skip to content
Snippets Groups Projects
Commit 4d4435ef authored by Patrick Louis S Connor's avatar Patrick Louis S Connor
Browse files

Merge branch 'feature/git-lfs' into 'master'

Run "git lfs install" automatically for tables

See merge request !24
parents 8497b9fe 2e22f769
No related branches found
No related tags found
1 merge request!24Run `git lfs install` automatically for tables
Pipeline #7003152 passed
...@@ -14,6 +14,8 @@ set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING ...@@ -14,6 +14,8 @@ set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
project(Installer VERSION 1.0 LANGUAGES C) # Need a language for GNUInstallDirs project(Installer VERSION 1.0 LANGUAGES C) # Need a language for GNUInstallDirs
find_package(Git REQUIRED)
include(ExternalProject) include(ExternalProject)
include(GNUInstallDirs) include(GNUInstallDirs)
...@@ -57,7 +59,7 @@ ExternalProject_Add(tables ...@@ -57,7 +59,7 @@ ExternalProject_Add(tables
GIT_REPOSITORY https://gitlab.cern.ch/cms-analysis/general/DasAnalysisSystem/tables.git GIT_REPOSITORY https://gitlab.cern.ch/cms-analysis/general/DasAnalysisSystem/tables.git
GIT_TAG origin/master GIT_TAG origin/master
SOURCE_DIR "${CMAKE_SOURCE_DIR}/tables" SOURCE_DIR "${CMAKE_SOURCE_DIR}/tables"
CONFIGURE_COMMAND "" CONFIGURE_COMMAND "${GIT_EXECUTABLE}" lfs install
BUILD_COMMAND "" BUILD_COMMAND ""
INSTALL_COMMAND "" INSTALL_COMMAND ""
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment