Skip to content

Commit

Permalink
Copy flowlessly into this repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ruizehung committed Oct 24, 2023
1 parent 8b2b7f7 commit 321c3ca
Show file tree
Hide file tree
Showing 92 changed files with 439,160 additions and 0 deletions.
39 changes: 39 additions & 0 deletions schedulers/Flowlessly/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Compiled Object files
*.slo
*.lo
*.o

# Compiled Dynamic libraries
*.so
*.dylib

# Compiled Static libraries
*.lai
*.la
*.a

# CMake files
cmake_install.cmake
CMakeFiles*
CMakeCache*
CTestTestfile.cmake
Makefile

# Ignore build directory
build

*~

graph.out
test*.dm

ext/*

# Latex stuff
*.aux
*.bbl
*.blg
*.fdb_latexmk
*.fls
*.log
*.out
34 changes: 34 additions & 0 deletions schedulers/Flowlessly/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#####################################################################
project(Flowlessly)
#####################################################################

cmake_minimum_required(VERSION 2.8)

# Path variable configuration
include(cmake/Paths.cmake)

include_directories(${Flowlessly_SOURCE_DIR})
include_directories(${Flowlessly_BUILD_DIR/src})

# CMake libraries
include(CheckLibraryExists)
include(CheckFunctionExists)
include(ExternalProject)
include(CheckCXXSourceCompiles)
include(CheckCXXCompilerFlag)

# Build options
include(BuildOptions)

# Compiler config
include(CXXCompilerConfig)

# External dependencies
include(ExternalDependencies)

# Doxy documentaion target
include(DoxyTargets)

enable_testing()

subdirs(src)
Loading

0 comments on commit 321c3ca

Please sign in to comment.