-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
18 lines (15 loc) · 1.02 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cmake_minimum_required(VERSION 3.13)
project(fligtSimProj2)
set(CMAKE_CXX_STANDARD 14)
set(GCC_COVERAGE_COMPILE_FLAGS "-pthread")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}")
add_executable(fligtSimProj2 main.cpp ISearcher.h ISearchable.h CacheManager.cpp
CacheManager.h ClientHandler.h CompareState.h
FileCacheManager.cpp FileCacheManager.h Main.cpp MySerialServer.h
MySerialServer.cpp MyTestClientHandler.cpp Utils.cpp Utils.h
MyTestClientHandler.h MySerialServer.cpp MyParallelServer.cpp MyParallelServer.h
PQueueSearcher.h Searcher.h Server.h Solver.h State.h
State.cpp StatePriority.h StringReverser.h StringReverser.cpp Matrix.h Matrix.cpp DepthFirstSearch.h
Client.h MatrixSearchClient.cpp MatrixSearchClient.h MyClientHandler.cpp MyClientHandler.h
SolverToSearcherAdapter.cpp SolverToSearcherAdapter.h MatrixCacheAdapter.cpp MatrixCacheAdapter.h
BreadthFirstSearch.h MatrixSearchClient.h MatrixSearchClient.cpp Client.h BestFirstSearch.h)