Converts from WORKSPACE config to MODULE.bazel config.

This commit is contained in:
2024-09-02 01:06:19 -07:00
parent cf383f27c7
commit 10d6de6a89
5 changed files with 137 additions and 17 deletions

View File

@@ -10,6 +10,10 @@
* Licensed under the MIT license see the LICENSE file for details.
***************************************************************************************/
#if !defined(DEBUG)
#include <iostream>
#endif
#include "Colors.h"
namespace SBF {
@@ -122,7 +126,7 @@ void WaitForKeypress();
/// Clears the screen if not a debug build.
inline void MaybeClearScreen() {
#if !defined(DEBUG)
cout << "\033[1;1H\033[2J";
std::cout << "\033[1;1H\033[2J";
#endif
}
} // End namespace SBF

View File

@@ -10,11 +10,13 @@
***************************************************************************************/
#include <cstdint>
#include <functional>
#include <iostream>
#include <sstream>
#include <string>
#include <tuple>
#include <utility>
#include <vector>
// Test lifecycle
// suite_setup_function(); - This is called to allocate any suite level resources. This is called once when the suite