no message

master
zcy 2021-12-20 14:43:31 +08:00
parent 9fd67c1fc3
commit 3802e5a66d
3 changed files with 8 additions and 1 deletions

View File

@ -18,7 +18,7 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel")
# using Intel C++
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
# using Visual Studio C++
add_compile_options(/D_CRT_SECURE_NO_WARNINGS_CRT_SECURE_NO_WARNINGS /D_CRT_SECURE_NO_WARNINGS)
add_compile_options( /DEBUG /D_CRT_SECURE_NO_WARNINGS /D_CRT_SECURE_NO_WARNINGS)
endif()
SET(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/obj)

View File

@ -25,3 +25,5 @@ add_executable(cpp11 cpp11_test.cpp )
add_executable(gtest gtest.cpp )
add_executable(thread_test thread_usage.cpp threadpool.cpp)
add_executable(log_test.cpp log_test.cpp)
add_executable(template_test template.cpp)

View File

@ -52,3 +52,8 @@ void TestRingBuffer(){
}
}
int main() {
std::cout<<"main"<<std::endl;
}