Skip to content
Snippets Groups Projects

Run `git lfs install` automatically for tables

Merged Louis Moureaux requested to merge feature/git-lfs into master
All threads resolved!
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 3
1
@@ -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 ""
)
)
Loading