Moved CMake installation rules into separate CMake file. Plus some other tidying

This commit is contained in:
Nav
2022-04-29 22:12:47 +01:00
parent 76e189162e
commit 63dc84aba0
3 changed files with 43 additions and 31 deletions

View File

@@ -69,7 +69,7 @@ namespace Bloom
*
* @return
*/
static inline std::string compiledResourcesPath() {
static std::string compiledResourcesPath() {
#ifdef BLOOM_COMPILED_RESOURCES_PATH_OVERRIDE
return {BLOOM_COMPILED_RESOURCES_PATH_OVERRIDE};
#else
@@ -85,7 +85,7 @@ namespace Bloom
*
* @return
*/
static inline std::string homeDomainName() {
static std::string homeDomainName() {
#ifdef BLOOM_HOME_DOMAIN_NAME_OVERRIDE
return {BLOOM_HOME_DOMAIN_NAME_OVERRIDE};
#else