erius
cab1b88a77
Disabled warnings as errors bumped the cmake min version to 3.12 for c++20 support and -j flag Placed a CMakeLists.txt in each subdirectory of the project
12 lines
188 B
C++
12 lines
188 B
C++
#ifndef TAPE_CONFIG_H
|
|
#define TAPE_CONFIG_H
|
|
|
|
#include "filetape.h"
|
|
|
|
namespace tape {
|
|
|
|
FileTapeSettings init_settings(int argc, char **argv);
|
|
|
|
} // namespace tape
|
|
|
|
#endif // !TAPE_CONFIG_H
|