Remove CMakeLists for now (#1086)
This commit is contained in:
		@@ -1,11 +0,0 @@
 | 
				
			|||||||
cmake_minimum_required(VERSION 3.13)
 | 
					 | 
				
			||||||
project(calculator CXX)
 | 
					 | 
				
			||||||
set(CMAKE_CXX_STANDARD 17)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if(CMAKE_CXX_COMPILER MATCHES ".*clang")
 | 
					 | 
				
			||||||
    # Clang disagress with libstdc++ about constexpr-ness of wstring_view
 | 
					 | 
				
			||||||
    # See https://github.com/Microsoft/calculator/pull/321
 | 
					 | 
				
			||||||
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
 | 
					 | 
				
			||||||
endif()
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
add_subdirectory(CalcManager)
 | 
					 | 
				
			||||||
@@ -1,14 +0,0 @@
 | 
				
			|||||||
target_sources(CalcManager PRIVATE
 | 
					 | 
				
			||||||
	calc.cpp
 | 
					 | 
				
			||||||
	CalcInput.cpp
 | 
					 | 
				
			||||||
	CalcUtils.cpp
 | 
					 | 
				
			||||||
	History.cpp
 | 
					 | 
				
			||||||
	Number.cpp
 | 
					 | 
				
			||||||
	Rational.cpp
 | 
					 | 
				
			||||||
	RationalMath.cpp
 | 
					 | 
				
			||||||
	scicomm.cpp
 | 
					 | 
				
			||||||
	scidisp.cpp
 | 
					 | 
				
			||||||
	scifunc.cpp
 | 
					 | 
				
			||||||
	scioper.cpp
 | 
					 | 
				
			||||||
	sciset.cpp
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
@@ -1,11 +0,0 @@
 | 
				
			|||||||
add_library(CalcManager
 | 
					 | 
				
			||||||
	CalculatorHistory.cpp
 | 
					 | 
				
			||||||
	CalculatorManager.cpp
 | 
					 | 
				
			||||||
	ExpressionCommand.cpp
 | 
					 | 
				
			||||||
	pch.cpp
 | 
					 | 
				
			||||||
	UnitConverter.cpp
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
target_include_directories(CalcManager PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
add_subdirectory(Ratpack)
 | 
					 | 
				
			||||||
add_subdirectory(CEngine)
 | 
					 | 
				
			||||||
@@ -1,14 +0,0 @@
 | 
				
			|||||||
target_sources(CalcManager PRIVATE
 | 
					 | 
				
			||||||
	basex.cpp
 | 
					 | 
				
			||||||
	conv.cpp
 | 
					 | 
				
			||||||
	exp.cpp
 | 
					 | 
				
			||||||
	fact.cpp
 | 
					 | 
				
			||||||
	itrans.cpp
 | 
					 | 
				
			||||||
	itransh.cpp
 | 
					 | 
				
			||||||
	logic.cpp
 | 
					 | 
				
			||||||
	num.cpp
 | 
					 | 
				
			||||||
	rat.cpp
 | 
					 | 
				
			||||||
	support.cpp
 | 
					 | 
				
			||||||
	trans.cpp
 | 
					 | 
				
			||||||
	transh.cpp
 | 
					 | 
				
			||||||
)
 | 
					 | 
				
			||||||
		Reference in New Issue
	
	Block a user