-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from bigladder/refactor/logical-layout
Implement Company Naming Convention
- Loading branch information
Showing
65 changed files
with
8,617 additions
and
8,211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
/* Copyright (c) 2020-2024 Big Ladder Software LLC. All rights reserved. | ||
* See the LICENSE.txt file for additional terms and conditions. */ | ||
// Copyright (c) 2020 - 2024 Big Ladder Software, LLC. | ||
// See the LICENSE.txt file for additional terms and conditions. | ||
|
||
#ifndef APPS_COMPILATION_SETTINGS_H | ||
#define APPS_COMPILATION_SETTINGS_H | ||
#ifndef APP_COMPILATION_SETTINGS_H | ||
#define APP_COMPILATION_SETTINGS_H | ||
|
||
std::string const build_type = | ||
std::string{"@CMAKE_BUILD_TYPE@"}; | ||
std::string const build_type = std::string{"@CMAKE_BUILD_TYPE@"}; | ||
|
||
#endif |
Oops, something went wrong.