The convention is to use capitalized filenames for source files that
implement classes and namespaces and lowercase filenames for source
files that do not.
perfdir.*
testdir.*
-# Version is generated into src, because it should be included into src packages
-/src/Version.cpp
+# version.cpp is generated in src because it should be included into source
+# packages
+/src/version.cpp
# Typical build directories
/build*
if(VERSION_ERROR)
message(STATUS "Not within git repository")
else()
- configure_file(${CMAKE_SOURCE_DIR}/cmake/Version.cpp.in
- ${CMAKE_SOURCE_DIR}/src/Version.cpp @ONLY)
+ configure_file(
+ ${CMAKE_SOURCE_DIR}/cmake/version.cpp.in
+ ${CMAKE_SOURCE_DIR}/src/version.cpp
+ @ONLY)
endif()
manifest.cpp
result.cpp
stats.cpp
- Version.cpp)
+ version.cpp)
if(INODE_CACHE_SUPPORTED)
list(APPEND source_files InodeCache.cpp)