mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-21 05:43:10 -07:00
Remove CMakeLists for now (#1086)
This commit is contained in:
parent
0490d8cd20
commit
41dcbf53ec
4 changed files with 0 additions and 50 deletions
|
@ -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
|
|
||||||
)
|
|
Loading…
Add table
Add a link
Reference in a new issue