Skip to content

Commit

Permalink
static lib
Browse files Browse the repository at this point in the history
  • Loading branch information
candlewill committed Mar 28, 2017
1 parent 41ee9c4 commit 8575ba2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
Binary file removed ChatScript-7.3/BINARIES/ChatScript
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion ChatScript-7.3/SRC/Makefile_lib
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cs: DEFINES+= -DDISCARDSERVER=1 -DDISCARDPOSTGRES=1 -DDISCARDMONGO=1 -DDISCARDM
cs: PGLOAD= -pthread
cs: INCLUDEDIRS=-Ievserver -I../privatecode/Jieba/include/ -I../privatecode/Jieba/deps/
cs: all
cs: LIBS=../BINARIES/ChatScript.a
cs: LIBS=../BINARIES/libChatScript.a
cs: CFLAGS=-c -std=c++11 -Wall -funsigned-char -Wno-write-strings -Wno-char-subscripts -Wno-strict-aliasing


Expand Down
11 changes: 11 additions & 0 deletions ChatScript-7.3/Usage/Dialog.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// https://www.chatbots.org/ai_zone/viewthread/1552/P15/

main(int argc, char** argv)
{
int i;

printf("argc = %d\n", argc);

for (i = 0; i < argc; i++)
printf("argv[%d] = \"%s\"\n", i, argv);
}
Empty file added ChatScript-7.3/Usage/Makefile
Empty file.

0 comments on commit 8575ba2

Please sign in to comment.