-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
32 lines (28 loc) · 839 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
32 lines (28 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cmake_minimum_required(VERSION 3.3)
project(untitled)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -O3 -lboost_program_options")
set(
SOURCE_FILES
src/Main.cpp
src/Solution.cpp
src/Solution.h
src/SimulatedAnnealing.cpp
src/SimulatedAnnealing.h
src/Random.cpp
src/Random.h
src/Graph.cpp
src/Graph.h
src/Parameters.cpp
src/Parameters.h
src/moves/Move.h
src/moves/RelocateRightMove.cpp
src/moves/RelocateRightMove.h
src/moves/RelocateLeftMove.cpp
src/moves/RelocateLeftMove.h
src/moves/ShiftRightMove.cpp
src/moves/ShiftRightMove.h
src/moves/ShiftLeftMove.cpp
src/moves/ShiftLeftMove.h
)
set(EXECUTABLE_OUTPUT_PATH "release")
add_executable(Main ${SOURCE_FILES})