Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- DIR=$(cd "$(dirname "$0")" ; pwd -P)
- TMP=/tmp/cxx-headers.tmp
-
- grep '^memory_Context ' memory.cpp > $TMP
- grep '^std::string ' memory_test.cpp >> $TMP
- grep '^memory_Context ' cli.cpp >> $TMP
- grep '^std::string ' cli_test.cpp >> $TMP
- grep '^std::string ' ctx_test.cpp >> $TMP
- grep '^std::string ' llm_test.cpp >> $TMP
-
- IN=$TMP
- OUT=$DIR/main.h
-
- echo '
- #include "memory_Context.h"
-
- #ifndef main_HEADER
- #define main_HEADER
- ' > $OUT
-
- sed -Ef cxx-headers.sed <$IN >>$OUT
-
- echo '
- #endif // main_HEADER
- ' >> $OUT
|