From 13d447c9fe25986e8b9204a196774947fead6f42 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Wed, 12 Jun 2024 13:47:16 -0700 Subject: [PATCH] Use version.txt instead of version.tex latexmk seemed to have some trouble with it being a tex file --- CMakeLists.txt | 4 ++-- paper/paper.tex | 2 +- paper/{version.tex => version.txt} | 0 version.tex.in => version.txt.in | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename paper/{version.tex => version.txt} (100%) rename version.tex.in => version.txt.in (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf03d60..8e28401 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,8 +9,8 @@ project( set(CMAKE_CXX_STANDARD 20) file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/version.txt ${PROJECT_VERSION}) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/version.tex.in - ${CMAKE_CURRENT_SOURCE_DIR}/paper/version.tex) +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/version.txt.in + ${CMAKE_CURRENT_SOURCE_DIR}/paper/version.txt) include(CMakePushCheckState) include(CheckCXXCompilerFlag) diff --git a/paper/paper.tex b/paper/paper.tex index 2bbb54d..2fca47d 100644 --- a/paper/paper.tex +++ b/paper/paper.tex @@ -8,7 +8,7 @@ \usepackage[edges]{forest} \usepackage{amsmath} -\input{version} +\input{version.txt} \title{ARTful Concurrency Control à la FoundationDB} \author{Andrew Noyes \thanks{\href{mailto:andrew@weaselab.dev}{andrew@weaselab.dev}}} diff --git a/paper/version.tex b/paper/version.txt similarity index 100% rename from paper/version.tex rename to paper/version.txt diff --git a/version.tex.in b/version.txt.in similarity index 100% rename from version.tex.in rename to version.txt.in