This repository has been archived by the owner on May 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.backup.txt
51 lines (49 loc) · 1.78 KB
/
CMakeLists.backup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
cmake_minimum_required(VERSION 3.9)
project(chatbot)
set(CMAKE_CXX_STANDARD 11)
add_executable(chatbot
src/Agent/ELIZA/Decomp.cpp
src/Agent/ELIZA/Decomp.h
src/Agent/ELIZA/Eliza.cpp
src/Agent/ELIZA/Eliza.h
src/Agent/ELIZA/Key.cpp
src/Agent/ELIZA/Key.h
src/Agent/ELIZA/Mapper.cpp
src/Agent/ELIZA/Mapper.h
src/Agent/ELIZA/Memory.cpp
src/Agent/ELIZA/Memory.h
src/Agent/ELIZA/Script.cpp
src/Agent/ELIZA/Script.h
src/Agent/ELIZA/Synonyms.cpp
src/Agent/ELIZA/Synonyms.h
src/Agent/ELIZA/Thesaurus.cpp
src/Agent/ELIZA/Thesaurus.h
src/Agent/KnowledgeBase/Action.cpp
src/Agent/KnowledgeBase/Action.h
src/Agent/KnowledgeBase/Analyser.cpp
src/Agent/KnowledgeBase/Analyser.h
src/Agent/KnowledgeBase/FLAnalyser.cpp
src/Agent/KnowledgeBase/FLAnalyser.h
src/Agent/KnowledgeBase/KB.cpp
src/Agent/KnowledgeBase/KB.h
src/Agent/KnowledgeBase/KBAgent.cpp
src/Agent/KnowledgeBase/KBAgent.h
src/Agent/KnowledgeBase/KBAnalyser.cpp
src/Agent/KnowledgeBase/KBAnalyser.h
src/Agent/KnowledgeBase/Percept.cpp
src/Agent/KnowledgeBase/Percept.h
src/Agent/KnowledgeBase/Rule.cpp
src/Agent/KnowledgeBase/Rule.h
src/Agent/KnowledgeBase/Sentence.cpp
src/Agent/KnowledgeBase/Sentence.h
src/Agent/Agent.cpp
src/Agent/Agent.h
src/Agent/Parser.cpp
src/Agent/Parser.h
src/Client/Console/TerminalClient.cpp
src/Client/Console/TerminalClient.h
src/Client/GUI/GUIclient.cpp
src/Client/GUI/GUIclient.h
src/Client/Web/WebClient.cpp
src/Client/Web/WebClient.h
src/Client/Client.h src/Client/Console/main.cpp)