Do not rely on the .git folder for TREXIO_DEVEL setup

This poses issues when packaging for Guix and Debian
This commit is contained in:
q-posev 2022-09-26 17:06:04 +02:00
parent 0e961123d4
commit 5b5730ed81
3 changed files with 4 additions and 4 deletions

0
.devel Normal file
View File

View File

@ -16,7 +16,7 @@ set(CMAKE_C_STANDARD_REQUIRED ON)
# Optional configure for developer mode to generate source code from org-mode files.
option(TREXIO_DEVEL "TREXIO developer mode (for code generation)." OFF)
if(EXISTS "${CMAKE_SOURCE_DIR}/.git/config")
if(EXISTS "${CMAKE_SOURCE_DIR}/.devel")
set(TREXIO_DEVEL ON)
find_package(Python3 REQUIRED)
if(Python3_FOUND)

View File

@ -16,10 +16,10 @@ AM_PROG_AR
LT_PREREQ([2.2])
LT_INIT
# Activate developer mode when the source is the git repository.
# Activate developer mode when if a dummy file is present (true when cloning the git repository).
# Otherwise, it is the source distribution and the developer mode should not be activated.
TEST_IFEXISTS=".git"
AS_IF([test -d $TEST_IFEXISTS],
TEST_IFEXISTS=".devel"
AS_IF([test -f $TEST_IFEXISTS],
[enable_maintainer_mode="yes"]
)