From 872ea6bf09eb25f85e32479d4c5f2d8ffe93904a Mon Sep 17 00:00:00 2001 From: gabime Date: Mon, 13 May 2019 01:13:58 +0300 Subject: [PATCH] Deleted redundant Make files and solutions --- CMakeLists.txt | 2 +- bench/CMakeLists.txt | 8 +- bench/Makefile | 31 ------- example/CMakeLists.txt | 6 +- example/Makefile | 21 ----- example/Makefile-all-warn | 22 ----- example/Makefile.clang | 26 ------ example/Makefile.mingw | 25 ------ example/example.sln | 106 ----------------------- example/example.vcxproj | 167 ------------------------------------ tests/CMakeLists.txt | 2 +- tests/Makefile | 22 ----- tests/tests.sln | 98 --------------------- tests/tests.vcxproj | 148 -------------------------------- tests/tests.vcxproj.filters | 60 ------------- tests/tests.vcxproj.user | 4 - 16 files changed, 9 insertions(+), 739 deletions(-) delete mode 100644 bench/Makefile delete mode 100644 example/Makefile delete mode 100644 example/Makefile-all-warn delete mode 100644 example/Makefile.clang delete mode 100644 example/Makefile.mingw delete mode 100644 example/example.sln delete mode 100644 example/example.vcxproj delete mode 100644 tests/Makefile delete mode 100644 tests/tests.sln delete mode 100644 tests/tests.vcxproj delete mode 100644 tests/tests.vcxproj.filters delete mode 100644 tests/tests.vcxproj.user diff --git a/CMakeLists.txt b/CMakeLists.txt index 73fa9254..7ed17e67 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -74,7 +74,7 @@ target_include_directories(spdlog_static PUBLIC "$") -add_library(spdlog::spdlog ALIAS spdlog_header_only) +add_library(spdlog::header_only ALIAS spdlog_header_only) if(SPDLOG_FMT_EXTERNAL AND NOT TARGET fmt::fmt) find_package(fmt REQUIRED CONFIG) diff --git a/bench/CMakeLists.txt b/bench/CMakeLists.txt index 3c4a3f9d..9280ebad 100644 --- a/bench/CMakeLists.txt +++ b/bench/CMakeLists.txt @@ -33,16 +33,16 @@ find_package(Threads REQUIRED) find_package(benchmark CONFIG REQUIRED) add_executable(bench bench.cpp) -target_link_libraries(bench PRIVATE spdlog::spdlog Threads::Threads) +target_link_libraries(bench PRIVATE spdlog::static Threads::Threads) add_executable(async_bench async_bench.cpp) -target_link_libraries(async_bench PRIVATE spdlog::spdlog Threads::Threads) +target_link_libraries(async_bench PRIVATE spdlog::static Threads::Threads) add_executable(latency latency.cpp) -target_link_libraries(latency PRIVATE benchmark::benchmark spdlog::spdlog Threads::Threads) +target_link_libraries(latency PRIVATE benchmark::benchmark spdlog::static Threads::Threads) add_executable(formatter-bench formatter-bench.cpp) -target_link_libraries(formatter-bench PRIVATE benchmark::benchmark spdlog::spdlog Threads::Threads) +target_link_libraries(formatter-bench PRIVATE benchmark::benchmark spdlog::static Threads::Threads) file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs") diff --git a/bench/Makefile b/bench/Makefile deleted file mode 100644 index 868a7335..00000000 --- a/bench/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -CXX ?= g++ -CXXFLAGS = -march=native -Wall -Wextra -pedantic -Wconversion -std=c++11 -pthread -I../include -fmax-errors=1 -CXX_RELEASE_FLAGS = -O3 -flto -Wl,--no-as-needed - - -binaries=bench async_bench latency formatter-bench - -all: $(binaries) - -bench: bench.cpp - $(CXX) bench.cpp -o bench $(CXXFLAGS) $(CXX_RELEASE_FLAGS) - - -async_bench: async_bench.cpp - $(CXX) async_bench.cpp -o async_bench $(CXXFLAGS) $(CXX_RELEASE_FLAGS) - - -latency: latency.cpp - $(CXX) latency.cpp -o latency $(CXXFLAGS) $(CXX_RELEASE_FLAGS) -lbenchmark - - -formatter-bench: formatter-bench.cpp - $(CXX) formatter-bench.cpp -o formatter-bench $(CXXFLAGS) $(CXX_RELEASE_FLAGS) -lbenchmark - - -.PHONY: clean - -clean: - rm -f *.o logs/* latecy_logs $(binaries) - -rebuild: clean all diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index a404682a..f0a917f2 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -34,14 +34,14 @@ find_package(Threads REQUIRED) add_executable(example example.cpp) if(CMAKE_SYSTEM_NAME STREQUAL "Android") find_library(log-lib log) - target_link_libraries(example spdlog::spdlog Threads::Threads log) + target_link_libraries(example spdlog::static Threads::Threads log) else() - target_link_libraries(example spdlog::spdlog Threads::Threads) + target_link_libraries(example spdlog::static Threads::Threads) endif() add_executable(multisink multisink.cpp) -target_link_libraries(multisink spdlog::spdlog Threads::Threads) +target_link_libraries(multisink spdlog::static Threads::Threads) file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs") diff --git a/example/Makefile b/example/Makefile deleted file mode 100644 index bd6b2922..00000000 --- a/example/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -CXX ?= g++ -CXX_FLAGS = -Wall -Wextra -pedantic -std=c++11 -pthread -I../include -fmax-errors=1 -Wconversion -CXX_RELEASE_FLAGS = -O3 -march=native -CXX_DEBUG_FLAGS= -g - -all: example -debug: example-debug - -example: example.cpp - $(CXX) example.cpp -o example $(CXX_FLAGS) $(CXX_RELEASE_FLAGS) $(CXXFLAGS) - - -example-debug: example.cpp - $(CXX) example.cpp -o example-debug $(CXX_FLAGS) $(CXX_DEBUG_FLAGS) $(CXXFLAGS) - -clean: - rm -f *.o logs/*.txt example example-debug - - -rebuild: clean all -rebuild-debug: clean debug diff --git a/example/Makefile-all-warn b/example/Makefile-all-warn deleted file mode 100644 index 2ba68e2a..00000000 --- a/example/Makefile-all-warn +++ /dev/null @@ -1,22 +0,0 @@ -#-Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-padded -CXX ?= g++ -CXX_FLAGS = -Wall -Wextra -pedantic -std=c++11 -pthread -I../include -fmax-errors=1 -Wconversion -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-padded -Wno-weak-vtables -Wno-global-constructors -CXX_RELEASE_FLAGS = -O3 -march=native -CXX_DEBUG_FLAGS= -g - -all: example -debug: example-debug - -example: example.cpp - $(CXX) example.cpp -o example $(CXX_FLAGS) $(CXX_RELEASE_FLAGS) $(CXXFLAGS) - - -example-debug: example.cpp - $(CXX) example.cpp -o example-debug $(CXX_FLAGS) $(CXX_DEBUG_FLAGS) $(CXXFLAGS) - -clean: - rm -f *.o logs/*.txt example example-debug - - -rebuild: clean all -rebuild-debug: clean debug diff --git a/example/Makefile.clang b/example/Makefile.clang deleted file mode 100644 index 475855db..00000000 --- a/example/Makefile.clang +++ /dev/null @@ -1,26 +0,0 @@ -CXX = clang++ -CXXFLAGS = -march=native -Wall -Wextra -Wshadow -pedantic -std=c++11 -pthread -I../include -CXX_RELEASE_FLAGS = -O2 -CXX_DEBUG_FLAGS= -g - - -all: example -debug: example-debug - -example: example.cpp - $(CXX) example.cpp -o example-clang $(CXXFLAGS) $(CXX_RELEASE_FLAGS) - - - -example-debug: example.cpp - $(CXX) example.cpp -o example-clang-debug $(CXXFLAGS) $(CXX_DEBUG_FLAGS) - - -clean: - rm -f *.o logs/*.txt example-clang example-clang-debug - - -rebuild: clean all -rebuild-debug: clean debug - - diff --git a/example/Makefile.mingw b/example/Makefile.mingw deleted file mode 100644 index 247a818b..00000000 --- a/example/Makefile.mingw +++ /dev/null @@ -1,25 +0,0 @@ -CXX ?= g++ -CXXFLAGS = -D_WIN32_WINNT=0x600 -march=native -Wall -Wextra -pedantic -std=gnu++0x -pthread -Wl,--no-as-needed -I../include -CXX_RELEASE_FLAGS = -O3 -CXX_DEBUG_FLAGS= -g - - -all: example -debug: example-debug - -example: example.cpp - $(CXX) example.cpp -o example $(CXXFLAGS) $(CXX_RELEASE_FLAGS) - - -example-debug: example.cpp - $(CXX) example.cpp -o example-debug $(CXXFLAGS) $(CXX_DEBUG_FLAGS) - - -clean: - rm -f *.o logs/*.txt example example-debug - - -rebuild: clean all -rebuild-debug: clean debug - - diff --git a/example/example.sln b/example/example.sln deleted file mode 100644 index b29a9e47..00000000 --- a/example/example.sln +++ /dev/null @@ -1,106 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27703.2018 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example.vcxproj", "{9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "spdlog", "spdlog", "{7FC6AB76-AD88-4135-888C-0568E81475AF}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\async.h = ..\include\spdlog\async.h - ..\include\spdlog\async_logger.h = ..\include\spdlog\async_logger.h - ..\include\spdlog\common.h = ..\include\spdlog\common.h - ..\include\spdlog\formatter.h = ..\include\spdlog\formatter.h - ..\include\spdlog\logger.h = ..\include\spdlog\logger.h - ..\include\spdlog\spdlog.h = ..\include\spdlog\spdlog.h - ..\include\spdlog\tweakme.h = ..\include\spdlog\tweakme.h - ..\include\spdlog\version.h = ..\include\spdlog\version.h - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "details", "details", "{08E93803-E650-42D9-BBB4-3C16979F850E}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\details\async_logger_impl.h = ..\include\spdlog\details\async_logger_impl.h - ..\include\spdlog\details\circular_q.h = ..\include\spdlog\details\circular_q.h - ..\include\spdlog\details\console_globals.h = ..\include\spdlog\details\console_globals.h - ..\include\spdlog\details\file_helper.h = ..\include\spdlog\details\file_helper.h - ..\include\spdlog\details\fmt_helper.h = ..\include\spdlog\details\fmt_helper.h - ..\include\spdlog\details\log_msg.h = ..\include\spdlog\details\log_msg.h - ..\include\spdlog\details\logger_impl.h = ..\include\spdlog\details\logger_impl.h - ..\include\spdlog\details\mpmc_blocking_q.h = ..\include\spdlog\details\mpmc_blocking_q.h - ..\include\spdlog\details\null_mutex.h = ..\include\spdlog\details\null_mutex.h - ..\include\spdlog\details\os.h = ..\include\spdlog\details\os.h - ..\include\spdlog\details\pattern_formatter.h = ..\include\spdlog\details\pattern_formatter.h - ..\include\spdlog\details\periodic_worker.h = ..\include\spdlog\details\periodic_worker.h - ..\include\spdlog\details\registry.h = ..\include\spdlog\details\registry.h - ..\include\spdlog\details\spdlog_impl.h = ..\include\spdlog\details\spdlog_impl.h - ..\include\spdlog\details\thread_pool.h = ..\include\spdlog\details\thread_pool.h - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "fmt", "fmt", "{82378DE1-8463-4F91-91A0-C2C40E2AEA2A}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\fmt\fmt.h = ..\include\spdlog\fmt\fmt.h - ..\include\spdlog\fmt\ostr.h = ..\include\spdlog\fmt\ostr.h - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "bundled", "bundled", "{D9CA4494-80D1-48D1-A897-D3564F7B27FF}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\fmt\bundled\format.cc = ..\include\spdlog\fmt\bundled\format.cc - ..\include\spdlog\fmt\bundled\format.h = ..\include\spdlog\fmt\bundled\format.h - ..\include\spdlog\fmt\bundled\LICENSE.rst = ..\include\spdlog\fmt\bundled\LICENSE.rst - ..\include\spdlog\fmt\bundled\ostream.cc = ..\include\spdlog\fmt\bundled\ostream.cc - ..\include\spdlog\fmt\bundled\ostream.h = ..\include\spdlog\fmt\bundled\ostream.h - ..\include\spdlog\fmt\bundled\posix.cc = ..\include\spdlog\fmt\bundled\posix.cc - ..\include\spdlog\fmt\bundled\posix.h = ..\include\spdlog\fmt\bundled\posix.h - ..\include\spdlog\fmt\bundled\printf.cc = ..\include\spdlog\fmt\bundled\printf.cc - ..\include\spdlog\fmt\bundled\printf.h = ..\include\spdlog\fmt\bundled\printf.h - ..\include\spdlog\fmt\bundled\time.h = ..\include\spdlog\fmt\bundled\time.h - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sinks", "sinks", "{27D16BB9-2B81-4F61-80EC-0C7A777248E4}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\sinks\android_sink.h = ..\include\spdlog\sinks\android_sink.h - ..\include\spdlog\sinks\ansicolor_sink.h = ..\include\spdlog\sinks\ansicolor_sink.h - ..\include\spdlog\sinks\base_sink.h = ..\include\spdlog\sinks\base_sink.h - ..\include\spdlog\sinks\dist_sink.h = ..\include\spdlog\sinks\dist_sink.h - ..\include\spdlog\sinks\file_sinks.h = ..\include\spdlog\sinks\file_sinks.h - ..\include\spdlog\sinks\msvc_sink.h = ..\include\spdlog\sinks\msvc_sink.h - ..\include\spdlog\sinks\null_sink.h = ..\include\spdlog\sinks\null_sink.h - ..\include\spdlog\sinks\ostream_sink.h = ..\include\spdlog\sinks\ostream_sink.h - ..\include\spdlog\sinks\sink.h = ..\include\spdlog\sinks\sink.h - ..\include\spdlog\sinks\stdout_color_sinks.h = ..\include\spdlog\sinks\stdout_color_sinks.h - ..\include\spdlog\sinks\stdout_sinks.h = ..\include\spdlog\sinks\stdout_sinks.h - ..\include\spdlog\sinks\syslog_sink.h = ..\include\spdlog\sinks\syslog_sink.h - ..\include\spdlog\sinks\wincolor_sink.h = ..\include\spdlog\sinks\wincolor_sink.h - ..\include\spdlog\sinks\windebug_sink.h = ..\include\spdlog\sinks\windebug_sink.h - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}.Debug|Win32.Build.0 = Debug|Win32 - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}.Debug|x64.ActiveCfg = Debug|x64 - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}.Debug|x64.Build.0 = Debug|x64 - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}.Release|Win32.ActiveCfg = Release|Win32 - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}.Release|Win32.Build.0 = Release|Win32 - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}.Release|x64.ActiveCfg = Release|x64 - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {08E93803-E650-42D9-BBB4-3C16979F850E} = {7FC6AB76-AD88-4135-888C-0568E81475AF} - {82378DE1-8463-4F91-91A0-C2C40E2AEA2A} = {7FC6AB76-AD88-4135-888C-0568E81475AF} - {D9CA4494-80D1-48D1-A897-D3564F7B27FF} = {82378DE1-8463-4F91-91A0-C2C40E2AEA2A} - {27D16BB9-2B81-4F61-80EC-0C7A777248E4} = {7FC6AB76-AD88-4135-888C-0568E81475AF} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {1BF53532-C5DC-4236-B195-9E17CBE40A48} - EndGlobalSection -EndGlobal diff --git a/example/example.vcxproj b/example/example.vcxproj deleted file mode 100644 index c752a8e9..00000000 --- a/example/example.vcxproj +++ /dev/null @@ -1,167 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - - - - {9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2} - Win32Proj - . - - - - Application - true - v141 - Unicode - - - Application - true - v141 - Unicode - - - Application - false - v141 - true - Unicode - - - Application - false - v141 - true - Unicode - - - - - - - - - - - - - - - - - - - true - - - true - - - false - - - false - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - ..\include;%(AdditionalIncludeDirectories) - - - - - Console - true - - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - ..\include;%(AdditionalIncludeDirectories) - - - - - - - Console - true - - - - - Level3 - - - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - ..\include;%(AdditionalIncludeDirectories) - - - - - Console - true - true - true - %(AdditionalLibraryDirectories) - %(AdditionalDependencies) - - - - - Level3 - - - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) - ..\include;%(AdditionalIncludeDirectories) - - - - - - - Console - true - true - true - %(AdditionalLibraryDirectories) - %(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 48f80e0e..2950f99e 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -21,7 +21,7 @@ set(SPDLOG_UTESTS_SOURCES add_executable(${PROJECT_NAME} ${SPDLOG_UTESTS_SOURCES}) target_link_libraries(${PROJECT_NAME} PRIVATE Threads::Threads) -target_link_libraries(${PROJECT_NAME} PRIVATE spdlog::spdlog) +target_link_libraries(${PROJECT_NAME} PRIVATE spdlog::static) file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs") diff --git a/tests/Makefile b/tests/Makefile deleted file mode 100644 index c9ce3c01..00000000 --- a/tests/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -CXX ?= g++ -CXXFLAGS = -Wall -pedantic -std=c++11 -pthread -Wconversion -O3 -I../include -fmax-errors=1 -LDPFALGS = -pthread -lsystemd - -CPP_FILES := $(wildcard *.cpp) -OBJ_FILES := $(addprefix ./,$(notdir $(CPP_FILES:.cpp=.o))) - - -tests: $(OBJ_FILES) - $(CXX) $(CXXFLAGS) $(LDPFALGS) -o $@ $^ - mkdir -p logs - -%.o: %.cpp - $(CXX) $(CXXFLAGS) -c -o $@ $< - -clean: - rm -f tests *.o logs/*.txt - -rebuild: clean tests - - - diff --git a/tests/tests.sln b/tests/tests.sln deleted file mode 100644 index 511c99c8..00000000 --- a/tests/tests.sln +++ /dev/null @@ -1,98 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27428.2037 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tests", "tests.vcxproj", "{59A07559-5F38-4DD6-A7FA-DB4153690B42}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "spdlog", "spdlog", "{0C043010-E40A-43B9-A5EA-B931FC8B6EFB}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\async.h = ..\include\spdlog\async.h - ..\include\spdlog\async_logger.h = ..\include\spdlog\async_logger.h - ..\include\spdlog\common.h = ..\include\spdlog\common.h - ..\include\spdlog\formatter.h = ..\include\spdlog\formatter.h - ..\include\spdlog\logger.h = ..\include\spdlog\logger.h - ..\include\spdlog\spdlog.h = ..\include\spdlog\spdlog.h - ..\include\spdlog\tweakme.h = ..\include\spdlog\tweakme.h - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "details", "details", "{C8A207B7-6930-4D28-85BB-EA79ADFD7DAC}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\details\async_logger_impl.h = ..\include\spdlog\details\async_logger_impl.h - ..\include\spdlog\details\file_helper.h = ..\include\spdlog\details\file_helper.h - ..\include\spdlog\details\log_msg.h = ..\include\spdlog\details\log_msg.h - ..\include\spdlog\details\logger_impl.h = ..\include\spdlog\details\logger_impl.h - ..\include\spdlog\details\mpmc_bounded_q.h = ..\include\spdlog\details\mpmc_bounded_q.h - ..\include\spdlog\details\null_mutex.h = ..\include\spdlog\details\null_mutex.h - ..\include\spdlog\details\os.h = ..\include\spdlog\details\os.h - ..\include\spdlog\details\pattern_formatter.h = ..\include\spdlog\details\pattern_formatter.h - ..\include\spdlog\details\registry.h = ..\include\spdlog\details\registry.h - ..\include\spdlog\details\spdlog_impl.h = ..\include\spdlog\details\spdlog_impl.h - ..\include\spdlog\details\thread_pool.h = ..\include\spdlog\details\thread_pool.h - ..\include\spdlog\details\traits.h = ..\include\spdlog\details\traits.h - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "fmt", "fmt", "{6512BA57-E9B9-4971-BC3A-83C784CC59A5}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\fmt\fmt.h = ..\include\spdlog\fmt\fmt.h - ..\include\spdlog\fmt\ostr.h = ..\include\spdlog\fmt\ostr.h - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "bundled", "bundled", "{F0D4A944-E0C7-4575-8254-06AC92B384E6}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\fmt\bundled\format.cc = ..\include\spdlog\fmt\bundled\format.cc - ..\include\spdlog\fmt\bundled\format.h = ..\include\spdlog\fmt\bundled\format.h - ..\include\spdlog\fmt\bundled\LICENSE.rst = ..\include\spdlog\fmt\bundled\LICENSE.rst - ..\include\spdlog\fmt\bundled\ostream.cc = ..\include\spdlog\fmt\bundled\ostream.cc - ..\include\spdlog\fmt\bundled\ostream.h = ..\include\spdlog\fmt\bundled\ostream.h - ..\include\spdlog\fmt\bundled\posix.cc = ..\include\spdlog\fmt\bundled\posix.cc - ..\include\spdlog\fmt\bundled\posix.h = ..\include\spdlog\fmt\bundled\posix.h - ..\include\spdlog\fmt\bundled\time.h = ..\include\spdlog\fmt\bundled\time.h - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sinks", "sinks", "{093AE34A-B617-467E-8F31-3C5A85EF51EB}" - ProjectSection(SolutionItems) = preProject - ..\include\spdlog\sinks\android_sink.h = ..\include\spdlog\sinks\android_sink.h - ..\include\spdlog\sinks\ansicolor_sink.h = ..\include\spdlog\sinks\ansicolor_sink.h - ..\include\spdlog\sinks\base_sink.h = ..\include\spdlog\sinks\base_sink.h - ..\include\spdlog\sinks\dist_sink.h = ..\include\spdlog\sinks\dist_sink.h - ..\include\spdlog\sinks\msvc_sink.h = ..\include\spdlog\sinks\msvc_sink.h - ..\include\spdlog\sinks\null_sink.h = ..\include\spdlog\sinks\null_sink.h - ..\include\spdlog\sinks\ostream_sink.h = ..\include\spdlog\sinks\ostream_sink.h - ..\include\spdlog\sinks\sink.h = ..\include\spdlog\sinks\sink.h - ..\include\spdlog\sinks\stdout_color_sinks.h = ..\include\spdlog\sinks\stdout_color_sinks.h - ..\include\spdlog\sinks\stdout_sinks.h = ..\include\spdlog\sinks\stdout_sinks.h - ..\include\spdlog\sinks\syslog_sink.h = ..\include\spdlog\sinks\syslog_sink.h - ..\include\spdlog\sinks\wincolor_sink.h = ..\include\spdlog\sinks\wincolor_sink.h - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {59A07559-5F38-4DD6-A7FA-DB4153690B42}.Debug|Win32.ActiveCfg = Debug|Win32 - {59A07559-5F38-4DD6-A7FA-DB4153690B42}.Debug|Win32.Build.0 = Debug|Win32 - {59A07559-5F38-4DD6-A7FA-DB4153690B42}.Debug|x64.ActiveCfg = Debug|x64 - {59A07559-5F38-4DD6-A7FA-DB4153690B42}.Debug|x64.Build.0 = Debug|x64 - {59A07559-5F38-4DD6-A7FA-DB4153690B42}.Release|Win32.ActiveCfg = Release|Win32 - {59A07559-5F38-4DD6-A7FA-DB4153690B42}.Release|Win32.Build.0 = Release|Win32 - {59A07559-5F38-4DD6-A7FA-DB4153690B42}.Release|x64.ActiveCfg = Release|x64 - {59A07559-5F38-4DD6-A7FA-DB4153690B42}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {C8A207B7-6930-4D28-85BB-EA79ADFD7DAC} = {0C043010-E40A-43B9-A5EA-B931FC8B6EFB} - {6512BA57-E9B9-4971-BC3A-83C784CC59A5} = {0C043010-E40A-43B9-A5EA-B931FC8B6EFB} - {F0D4A944-E0C7-4575-8254-06AC92B384E6} = {6512BA57-E9B9-4971-BC3A-83C784CC59A5} - {093AE34A-B617-467E-8F31-3C5A85EF51EB} = {0C043010-E40A-43B9-A5EA-B931FC8B6EFB} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {1D363F0E-2DC2-4544-963A-9812679AFF6B} - EndGlobalSection -EndGlobal diff --git a/tests/tests.vcxproj b/tests/tests.vcxproj deleted file mode 100644 index a246fd21..00000000 --- a/tests/tests.vcxproj +++ /dev/null @@ -1,148 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {59A07559-5F38-4DD6-A7FA-DB4153690B42} - tests - 10.0.16299.0 - - - - Application - true - v141 - MultiByte - - - Application - true - v141 - MultiByte - - - Application - false - v141 - true - MultiByte - - - Application - false - v141 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - Level3 - Disabled - true - $(SolutionDir)\..\include;%(AdditionalIncludeDirectories) - - - true - Console - - - - - Level3 - Disabled - true - _MBCS;%(PreprocessorDefinitions) - $(SolutionDir)..\include;%(AdditionalIncludeDirectories) - - - true - Console - - - - - Level3 - MaxSpeed - true - true - true - $(SolutionDir)\..\include;%(AdditionalIncludeDirectories) - - - true - true - true - Console - - - - - Level3 - MaxSpeed - true - true - true - _MBCS;%(PreprocessorDefinitions) - $(SolutionDir)..\include;%(AdditionalIncludeDirectories) - - - true - true - true - Console - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tests/tests.vcxproj.filters b/tests/tests.vcxproj.filters deleted file mode 100644 index c70cc496..00000000 --- a/tests/tests.vcxproj.filters +++ /dev/null @@ -1,60 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/tests/tests.vcxproj.user b/tests/tests.vcxproj.user deleted file mode 100644 index be250787..00000000 --- a/tests/tests.vcxproj.user +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file