Deleted redundant Make files and solutions
This commit is contained in:
		
							parent
							
								
									32fb9d51b9
								
							
						
					
					
						commit
						872ea6bf09
					
				| @ -74,7 +74,7 @@ target_include_directories(spdlog_static PUBLIC  "$<BUILD_INTERFACE:${CMAKE_CURR | |||||||
| # headr only | # headr only | ||||||
| add_library(spdlog_header_only INTERFACE) | add_library(spdlog_header_only INTERFACE) | ||||||
| target_include_directories(spdlog_header_only INTERFACE "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>") | target_include_directories(spdlog_header_only INTERFACE "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>") | ||||||
| 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) | if(SPDLOG_FMT_EXTERNAL AND NOT TARGET fmt::fmt) | ||||||
|     find_package(fmt REQUIRED CONFIG) |     find_package(fmt REQUIRED CONFIG) | ||||||
|  | |||||||
| @ -33,16 +33,16 @@ find_package(Threads REQUIRED) | |||||||
| find_package(benchmark CONFIG REQUIRED) | find_package(benchmark CONFIG REQUIRED) | ||||||
| 
 | 
 | ||||||
| add_executable(bench bench.cpp) | 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) | 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) | 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) | 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") | file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs") | ||||||
|  | |||||||
| @ -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 |  | ||||||
| @ -34,14 +34,14 @@ find_package(Threads REQUIRED) | |||||||
| add_executable(example example.cpp) | add_executable(example example.cpp) | ||||||
| if(CMAKE_SYSTEM_NAME STREQUAL "Android") | if(CMAKE_SYSTEM_NAME STREQUAL "Android") | ||||||
|     find_library(log-lib log) |     find_library(log-lib log) | ||||||
|     target_link_libraries(example spdlog::spdlog Threads::Threads log) |     target_link_libraries(example spdlog::static Threads::Threads log) | ||||||
| else() | else() | ||||||
|     target_link_libraries(example spdlog::spdlog Threads::Threads) |     target_link_libraries(example spdlog::static Threads::Threads) | ||||||
| endif() | endif() | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| add_executable(multisink multisink.cpp) | 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") | file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs") | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -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 |  | ||||||
| @ -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 |  | ||||||
| @ -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 |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| @ -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 |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| @ -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 |  | ||||||
| @ -1,167 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
|   <ItemGroup Label="ProjectConfigurations"> |  | ||||||
|     <ProjectConfiguration Include="Debug|Win32"> |  | ||||||
|       <Configuration>Debug</Configuration> |  | ||||||
|       <Platform>Win32</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Debug|x64"> |  | ||||||
|       <Configuration>Debug</Configuration> |  | ||||||
|       <Platform>x64</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Release|Win32"> |  | ||||||
|       <Configuration>Release</Configuration> |  | ||||||
|       <Platform>Win32</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Release|x64"> |  | ||||||
|       <Configuration>Release</Configuration> |  | ||||||
|       <Platform>x64</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClCompile Include="example.cpp" /> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <PropertyGroup Label="Globals"> |  | ||||||
|     <ProjectGuid>{9E5AB93A-0CCE-4BAC-9FCB-0FC9CB5EB8D2}</ProjectGuid> |  | ||||||
|     <Keyword>Win32Proj</Keyword> |  | ||||||
|     <RootNamespace>.</RootNamespace> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>Application</ConfigurationType> |  | ||||||
|     <UseDebugLibraries>true</UseDebugLibraries> |  | ||||||
|     <PlatformToolset>v141</PlatformToolset> |  | ||||||
|     <CharacterSet>Unicode</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>Application</ConfigurationType> |  | ||||||
|     <UseDebugLibraries>true</UseDebugLibraries> |  | ||||||
|     <PlatformToolset>v141</PlatformToolset> |  | ||||||
|     <CharacterSet>Unicode</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>Application</ConfigurationType> |  | ||||||
|     <UseDebugLibraries>false</UseDebugLibraries> |  | ||||||
|     <PlatformToolset>v141</PlatformToolset> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|     <CharacterSet>Unicode</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>Application</ConfigurationType> |  | ||||||
|     <UseDebugLibraries>false</UseDebugLibraries> |  | ||||||
|     <PlatformToolset>v141</PlatformToolset> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|     <CharacterSet>Unicode</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |  | ||||||
|   <ImportGroup Label="ExtensionSettings"> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <PropertyGroup Label="UserMacros" /> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |  | ||||||
|     <LinkIncremental>true</LinkIncremental> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |  | ||||||
|     <LinkIncremental>true</LinkIncremental> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |  | ||||||
|     <LinkIncremental>false</LinkIncremental> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |  | ||||||
|     <LinkIncremental>false</LinkIncremental> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |  | ||||||
|     <ClCompile> |  | ||||||
|       <PrecompiledHeader> |  | ||||||
|       </PrecompiledHeader> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <Optimization>Disabled</Optimization> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PrecompiledHeaderFile /> |  | ||||||
|       <PrecompiledHeaderOutputFile /> |  | ||||||
|     </ClCompile> |  | ||||||
|     <Link> |  | ||||||
|       <SubSystem>Console</SubSystem> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |  | ||||||
|     <ClCompile> |  | ||||||
|       <PrecompiledHeader> |  | ||||||
|       </PrecompiledHeader> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <Optimization>Disabled</Optimization> |  | ||||||
|       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PrecompiledHeaderFile> |  | ||||||
|       </PrecompiledHeaderFile> |  | ||||||
|       <PrecompiledHeaderOutputFile> |  | ||||||
|       </PrecompiledHeaderOutputFile> |  | ||||||
|     </ClCompile> |  | ||||||
|     <Link> |  | ||||||
|       <SubSystem>Console</SubSystem> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |  | ||||||
|     <ClCompile> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <PrecompiledHeader> |  | ||||||
|       </PrecompiledHeader> |  | ||||||
|       <Optimization>MaxSpeed</Optimization> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <IntrinsicFunctions>true</IntrinsicFunctions> |  | ||||||
|       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PrecompiledHeaderFile /> |  | ||||||
|       <PrecompiledHeaderOutputFile /> |  | ||||||
|     </ClCompile> |  | ||||||
|     <Link> |  | ||||||
|       <SubSystem>Console</SubSystem> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <EnableCOMDATFolding>true</EnableCOMDATFolding> |  | ||||||
|       <OptimizeReferences>true</OptimizeReferences> |  | ||||||
|       <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> |  | ||||||
|       <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |  | ||||||
|     <ClCompile> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <PrecompiledHeader> |  | ||||||
|       </PrecompiledHeader> |  | ||||||
|       <Optimization>MaxSpeed</Optimization> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <IntrinsicFunctions>true</IntrinsicFunctions> |  | ||||||
|       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|       <PrecompiledHeaderFile> |  | ||||||
|       </PrecompiledHeaderFile> |  | ||||||
|       <PrecompiledHeaderOutputFile> |  | ||||||
|       </PrecompiledHeaderOutputFile> |  | ||||||
|     </ClCompile> |  | ||||||
|     <Link> |  | ||||||
|       <SubSystem>Console</SubSystem> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <EnableCOMDATFolding>true</EnableCOMDATFolding> |  | ||||||
|       <OptimizeReferences>true</OptimizeReferences> |  | ||||||
|       <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> |  | ||||||
|       <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |  | ||||||
|   <ImportGroup Label="ExtensionTargets"> |  | ||||||
|   </ImportGroup> |  | ||||||
| </Project> |  | ||||||
| @ -21,7 +21,7 @@ set(SPDLOG_UTESTS_SOURCES | |||||||
| 
 | 
 | ||||||
| add_executable(${PROJECT_NAME} ${SPDLOG_UTESTS_SOURCES}) | add_executable(${PROJECT_NAME} ${SPDLOG_UTESTS_SOURCES}) | ||||||
| target_link_libraries(${PROJECT_NAME} PRIVATE Threads::Threads) | 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") | file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs") | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -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 |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| @ -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 |  | ||||||
| @ -1,148 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
|   <ItemGroup Label="ProjectConfigurations"> |  | ||||||
|     <ProjectConfiguration Include="Debug|Win32"> |  | ||||||
|       <Configuration>Debug</Configuration> |  | ||||||
|       <Platform>Win32</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Debug|x64"> |  | ||||||
|       <Configuration>Debug</Configuration> |  | ||||||
|       <Platform>x64</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Release|Win32"> |  | ||||||
|       <Configuration>Release</Configuration> |  | ||||||
|       <Platform>Win32</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|     <ProjectConfiguration Include="Release|x64"> |  | ||||||
|       <Configuration>Release</Configuration> |  | ||||||
|       <Platform>x64</Platform> |  | ||||||
|     </ProjectConfiguration> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <PropertyGroup Label="Globals"> |  | ||||||
|     <ProjectGuid>{59A07559-5F38-4DD6-A7FA-DB4153690B42}</ProjectGuid> |  | ||||||
|     <RootNamespace>tests</RootNamespace> |  | ||||||
|     <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>Application</ConfigurationType> |  | ||||||
|     <UseDebugLibraries>true</UseDebugLibraries> |  | ||||||
|     <PlatformToolset>v141</PlatformToolset> |  | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>Application</ConfigurationType> |  | ||||||
|     <UseDebugLibraries>true</UseDebugLibraries> |  | ||||||
|     <PlatformToolset>v141</PlatformToolset> |  | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>Application</ConfigurationType> |  | ||||||
|     <UseDebugLibraries>false</UseDebugLibraries> |  | ||||||
|     <PlatformToolset>v141</PlatformToolset> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> |  | ||||||
|     <ConfigurationType>Application</ConfigurationType> |  | ||||||
|     <UseDebugLibraries>false</UseDebugLibraries> |  | ||||||
|     <PlatformToolset>v141</PlatformToolset> |  | ||||||
|     <WholeProgramOptimization>true</WholeProgramOptimization> |  | ||||||
|     <CharacterSet>MultiByte</CharacterSet> |  | ||||||
|   </PropertyGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |  | ||||||
|   <ImportGroup Label="ExtensionSettings"> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> |  | ||||||
|     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |  | ||||||
|   </ImportGroup> |  | ||||||
|   <PropertyGroup Label="UserMacros" /> |  | ||||||
|   <PropertyGroup /> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |  | ||||||
|     <ClCompile> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <Optimization>Disabled</Optimization> |  | ||||||
|       <SDLCheck>true</SDLCheck> |  | ||||||
|       <AdditionalIncludeDirectories>$(SolutionDir)\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|     </ClCompile> |  | ||||||
|     <Link> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <SubSystem>Console</SubSystem> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |  | ||||||
|     <ClCompile> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <Optimization>Disabled</Optimization> |  | ||||||
|       <SDLCheck>true</SDLCheck> |  | ||||||
|       <PreprocessorDefinitions>_MBCS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories>$(SolutionDir)..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|     </ClCompile> |  | ||||||
|     <Link> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <SubSystem>Console</SubSystem> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |  | ||||||
|     <ClCompile> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <Optimization>MaxSpeed</Optimization> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <IntrinsicFunctions>true</IntrinsicFunctions> |  | ||||||
|       <SDLCheck>true</SDLCheck> |  | ||||||
|       <AdditionalIncludeDirectories>$(SolutionDir)\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|     </ClCompile> |  | ||||||
|     <Link> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <EnableCOMDATFolding>true</EnableCOMDATFolding> |  | ||||||
|       <OptimizeReferences>true</OptimizeReferences> |  | ||||||
|       <SubSystem>Console</SubSystem> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |  | ||||||
|     <ClCompile> |  | ||||||
|       <WarningLevel>Level3</WarningLevel> |  | ||||||
|       <Optimization>MaxSpeed</Optimization> |  | ||||||
|       <FunctionLevelLinking>true</FunctionLevelLinking> |  | ||||||
|       <IntrinsicFunctions>true</IntrinsicFunctions> |  | ||||||
|       <SDLCheck>true</SDLCheck> |  | ||||||
|       <PreprocessorDefinitions>_MBCS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |  | ||||||
|       <AdditionalIncludeDirectories>$(SolutionDir)..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |  | ||||||
|     </ClCompile> |  | ||||||
|     <Link> |  | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |  | ||||||
|       <EnableCOMDATFolding>true</EnableCOMDATFolding> |  | ||||||
|       <OptimizeReferences>true</OptimizeReferences> |  | ||||||
|       <SubSystem>Console</SubSystem> |  | ||||||
|     </Link> |  | ||||||
|   </ItemDefinitionGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClCompile Include="errors.cpp" /> |  | ||||||
|     <ClCompile Include="file_helper.cpp" /> |  | ||||||
|     <ClCompile Include="file_log.cpp" /> |  | ||||||
|     <ClCompile Include="test_async.cpp" /> |  | ||||||
|     <ClCompile Include="test_misc.cpp" /> |  | ||||||
|     <ClCompile Include="main.cpp" /> |  | ||||||
|     <ClCompile Include="registry.cpp" /> |  | ||||||
|     <ClCompile Include="test_macros.cpp" /> |  | ||||||
|     <ClCompile Include="test_pattern_formatter.cpp" /> |  | ||||||
|     <ClCompile Include="utils.cpp" /> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClInclude Include="catch.hpp" /> |  | ||||||
|     <ClInclude Include="includes.h" /> |  | ||||||
|     <ClInclude Include="utils.h" /> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |  | ||||||
|   <ImportGroup Label="ExtensionTargets"> |  | ||||||
|   </ImportGroup> |  | ||||||
| </Project> |  | ||||||
| @ -1,60 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <Filter Include="Source Files"> |  | ||||||
|       <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> |  | ||||||
|       <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> |  | ||||||
|     </Filter> |  | ||||||
|     <Filter Include="Header Files"> |  | ||||||
|       <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> |  | ||||||
|       <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions> |  | ||||||
|     </Filter> |  | ||||||
|     <Filter Include="Resource Files"> |  | ||||||
|       <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> |  | ||||||
|       <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> |  | ||||||
|     </Filter> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClCompile Include="file_log.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="main.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="registry.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="file_helper.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="utils.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="errors.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="test_macros.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="test_pattern_formatter.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="test_misc.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|     <ClCompile Include="test_async.cpp"> |  | ||||||
|       <Filter>Source Files</Filter> |  | ||||||
|     </ClCompile> |  | ||||||
|   </ItemGroup> |  | ||||||
|   <ItemGroup> |  | ||||||
|     <ClInclude Include="includes.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="catch.hpp"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|     <ClInclude Include="utils.h"> |  | ||||||
|       <Filter>Header Files</Filter> |  | ||||||
|     </ClInclude> |  | ||||||
|   </ItemGroup> |  | ||||||
| </Project> |  | ||||||
| @ -1,4 +0,0 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> |  | ||||||
| <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |  | ||||||
|   <PropertyGroup /> |  | ||||||
| </Project> |  | ||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user