Skip to content

Commit

Permalink
Fix project name, which also determines a number of default paths
Browse files Browse the repository at this point in the history
It should be all lowercase to be consistent
  • Loading branch information
gjanssens committed Feb 1, 2018
1 parent 84a1e81 commit d345624
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -6,7 +6,7 @@ ELSE()
CMAKE_MINIMUM_REQUIRED (VERSION 3.0)
ENDIF()

PROJECT (Gnucash)
PROJECT (gnucash)

ENABLE_TESTING()

Expand Down
2 changes: 1 addition & 1 deletion doc/CMakeLists.txt
Expand Up @@ -21,7 +21,7 @@ SET(doc_noinst_DATA
misc-notes.txt README.HBCI README.OFX README.translator.txt tip_of_the_day.list.in
TRANSLATION_HOWTO)

INSTALL(FILES ${doc_DATA} DESTINATION ${CMAKE_INSTALL_DATADIR}/doc/gnucash)
INSTALL(FILES ${doc_DATA} DESTINATION ${CMAKE_INSTALL_DOCDIR})

SET_LOCAL_DIST(doc_DIST_local ${doc_DATA} ${doc_noinst_DATA})
SET(doc_DIST ${doc_DIST_local} ${examples_DIST} PARENT_SCOPE)
Expand Down
2 changes: 1 addition & 1 deletion doc/examples/CMakeLists.txt
Expand Up @@ -21,6 +21,6 @@ SET(examples_DATA
web.qif
)

INSTALL(FILES ${examples_DATA} DESTINATION ${CMAKE_INSTALL_DATADIR}/doc/gnucash)
INSTALL(FILES ${examples_DATA} DESTINATION ${CMAKE_INSTALL_DOCDIR})

SET_DIST_LIST(examples_DIST ${examples_DATA} CMakeLists.txt )

0 comments on commit d345624

Please sign in to comment.