This change fixes the clang cmake config to use release libs of clang, adds the TicTacToe source files to bin/app/src/ and adds time measuring to the parse call in Project.
12 lines
127 B
C++
12 lines
127 B
C++
#include "tictactoe.h"
|
|
|
|
int main() {
|
|
TicTacToe tictactoe;
|
|
|
|
while ( tictactoe.Start() ) {
|
|
tictactoe.Run();
|
|
}
|
|
|
|
return 0;
|
|
}
|