-
Notifications
You must be signed in to change notification settings - Fork 1
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 #1 from fontanf/feature/switch-to-cmake
Feature/switch to cmake
- Loading branch information
Showing
37 changed files
with
807 additions
and
406 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,14 @@ | ||
cmake_minimum_required(VERSION 3.15.0) | ||
|
||
project(TreeSearchSolver LANGUAGES CXX) | ||
|
||
# Require C++11. | ||
set(CMAKE_CXX_STANDARD 11) | ||
|
||
# Enable output of compile commands during generation. | ||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | ||
|
||
# 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
This file was deleted.
Oops, something went wrong.
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/orproblems. | ||
FetchContent_Declare( | ||
orproblems | ||
GIT_REPOSITORY https://github.com/fontanf/orproblems.git | ||
GIT_TAG e9a58e010f7dc0ca7b5eea2358ed11d386f8622a) | ||
#SOURCE_DIR "${PROJECT_SOURCE_DIR}/../orproblems/") | ||
FetchContent_MakeAvailable(orproblems) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.