diff --git "a/2018141501263\350\203\241\346\226\271\346\231\250/CMakeLists.txt" "b/2018141501263\350\203\241\346\226\271\346\231\250/CMakeLists.txt" new file mode 100644 index 0000000..c172136 --- /dev/null +++ "b/2018141501263\350\203\241\346\226\271\346\231\250/CMakeLists.txt" @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 2.8) +project(instant_messaging_utility) + +IF(NOT CMAKE_BUILD_TYPE) + SET(CMAKE_BUILD_TYPE Release) +ENDIF() + +set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin) +set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib) + +include_directories( +${PROJECT_SOURCE_DIR}/include +) + +add_executable(chatroom_server src/Server.cpp src/ServerMain.cpp) +add_executable(chatroom_client src/Client.cpp src/ClientMain.cpp) + + + diff --git "a/2018141501263\350\203\241\346\226\271\346\231\250/\347\274\226\350\257\221\351\205\215\347\275\256\350\257\264\346\230\216.txt" "b/2018141501263\350\203\241\346\226\271\346\231\250/\347\274\226\350\257\221\351\205\215\347\275\256\350\257\264\346\230\216.txt" new file mode 100644 index 0000000..c78e8d9 --- /dev/null +++ "b/2018141501263\350\203\241\346\226\271\346\231\250/\347\274\226\350\257\221\351\205\215\347\275\256\350\257\264\346\230\216.txt" @@ -0,0 +1,2 @@ +系统:Ubuntu 20.04.1 +编译器:g++ \ No newline at end of file diff --git "a/2018141501263\350\203\241\346\226\271\346\231\250/\350\275\257\344\273\266\344\275\277\347\224\250\346\226\207\346\241\243.pdf" "b/2018141501263\350\203\241\346\226\271\346\231\250/\350\275\257\344\273\266\344\275\277\347\224\250\346\226\207\346\241\243.pdf" new file mode 100644 index 0000000..8290661 Binary files /dev/null and "b/2018141501263\350\203\241\346\226\271\346\231\250/\350\275\257\344\273\266\344\275\277\347\224\250\346\226\207\346\241\243.pdf" differ