-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
122 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# This is the CMakeCache file. | ||
# For build in directory: /home/yubtin/Desktop/codes/yutbin_server/cmake-build-debug | ||
# It was generated by CMake: /opt/clion/bin/cmake/linux/bin/cmake | ||
# You can edit this file to change values found and used by cmake. | ||
# If you do not want to change any of the values, simply exit the editor. | ||
# If you do want to change a value, simply edit, save, and exit the editor. | ||
# The syntax for the file is as follows: | ||
# KEY:TYPE=VALUE | ||
# KEY is the name of a variable in the cache. | ||
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. | ||
# VALUE is the current value for the KEY. | ||
|
||
######################## | ||
# EXTERNAL cache entries | ||
######################## | ||
|
||
//No help, variable specified on the command line. | ||
CMAKE_BUILD_TYPE:UNINITIALIZED=Debug | ||
|
||
//No help, variable specified on the command line. | ||
CMAKE_CXX_COMPILER:UNINITIALIZED=/usr/bin/clang++ | ||
|
||
//No help, variable specified on the command line. | ||
CMAKE_C_COMPILER:UNINITIALIZED=/usr/bin/clang | ||
|
||
//No help, variable specified on the command line. | ||
CMAKE_MAKE_PROGRAM:UNINITIALIZED=/usr/bin/make | ||
|
||
|
||
######################## | ||
# INTERNAL cache entries | ||
######################## | ||
|
||
//This is the directory where this CMakeCache.txt was created | ||
CMAKE_CACHEFILE_DIR:INTERNAL=/home/yubtin/Desktop/codes/yutbin_server/cmake-build-debug | ||
//Major version of cmake used to create the current loaded cache | ||
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 | ||
//Minor version of cmake used to create the current loaded cache | ||
CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 | ||
//Patch version of cmake used to create the current loaded cache | ||
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 | ||
//Path to CMake executable. | ||
CMAKE_COMMAND:INTERNAL=/opt/clion/bin/cmake/linux/bin/cmake | ||
//Path to cpack program executable. | ||
CMAKE_CPACK_COMMAND:INTERNAL=/opt/clion/bin/cmake/linux/bin/cpack | ||
//Path to ctest program executable. | ||
CMAKE_CTEST_COMMAND:INTERNAL=/opt/clion/bin/cmake/linux/bin/ctest | ||
//Name of external makefile project generator. | ||
CMAKE_EXTRA_GENERATOR:INTERNAL=CodeBlocks | ||
//Name of generator. | ||
CMAKE_GENERATOR:INTERNAL=Unix Makefiles | ||
//Generator instance identifier. | ||
CMAKE_GENERATOR_INSTANCE:INTERNAL= | ||
//Name of generator platform. | ||
CMAKE_GENERATOR_PLATFORM:INTERNAL= | ||
//Name of generator toolset. | ||
CMAKE_GENERATOR_TOOLSET:INTERNAL= | ||
//Source directory with the top level CMakeLists.txt file for this | ||
// project | ||
CMAKE_HOME_DIRECTORY:INTERNAL=/home/yubtin/Desktop/codes/yutbin_server | ||
//number of local generators | ||
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 | ||
//Path to CMake installation. | ||
CMAKE_ROOT:INTERNAL=/opt/clion/bin/cmake/linux/share/cmake-3.22 | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/opt/clion/bin/cmake/linux/bin/cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=/usr/bin/make -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -G "CodeBlocks - Unix Makefiles" -S /home/yubtin/Desktop/codes/yutbin_server -B /home/yubtin/Desktop/codes/yutbin_server/cmake-build-debug | ||
CMake Error at CMakeLists.txt:1 (cmake_minimum_required): | ||
CMake 3.23.1 or higher is required. You are running version 3.22.3 | ||
|
||
|
||
-- Configuring incomplete, errors occurred! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include<gtest/gtest.h> | ||
int add(int a,int b){ | ||
return a+b; | ||
} | ||
TEST(testCase,test0){ | ||
EXPECT_EQ(add(2,3),5); | ||
} | ||
int main(int argc,char **argv){ | ||
testing::InitGoogleTest(&argc,argv); | ||
return RUN_ALL_TESTS(); | ||
} |