-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from fontanf/feature/switch-to-cmake
Feature/switch to cmake
- Loading branch information
Showing
87 changed files
with
368 additions
and
500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
cmake_minimum_required(VERSION 3.15.0) | ||
|
||
project(StarObservationSchedulingSolver LANGUAGES CXX) | ||
|
||
# Require C++14. | ||
set(CMAKE_CXX_STANDARD 14) | ||
|
||
# Enable output of compile commands during generation. | ||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | ||
|
||
# Set MSVC_RUNTIME_LIBRARY. | ||
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>") | ||
|
||
# Add sub-directories. | ||
add_subdirectory(extern) | ||
add_subdirectory(src) | ||
add_subdirectory(test) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Enable FetchContent. | ||
include(FetchContent) | ||
|
||
# Fetch fontanf/columngenerationsolver. | ||
FetchContent_Declare( | ||
columngenerationsolver | ||
GIT_REPOSITORY https://github.com/fontanf/columngenerationsolver.git | ||
GIT_TAG 32561f17c6fa7100b2dedb5d397dab1a03c9db2c) | ||
#SOURCE_DIR "${PROJECT_SOURCE_DIR}/../columngenerationsolver/") | ||
FetchContent_MakeAvailable(columngenerationsolver) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
add_subdirectory(flexible_single_night_star_observation_scheduling) | ||
add_subdirectory(flexible_star_observation_scheduling) | ||
add_subdirectory(single_night_star_observation_scheduling) | ||
add_subdirectory(star_observation_scheduling) |
Oops, something went wrong.