Skip to content
Snippets Groups Projects
Commit 7252399d authored by Jaime Arias's avatar Jaime Arias
Browse files

add installation folder

parent 3ccc127c
No related branches found
No related tags found
No related merge requests found
......@@ -104,4 +104,5 @@ _deps
*-prefix/
**/build
assets
# End of https://www.toptal.com/developers/gitignore/api/c++,visualstudiocode
......@@ -9,6 +9,9 @@ set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
# Installing folder
set(INSTALL_FOLDER ${sogMBT_SOURCE_DIR}/assets)
# libraries PATH
set(LIBS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/libs)
......
# set minimum cmake version
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
# main program
add_executable(sogMBT main.cpp
MDGraph.cpp
RdPBDD.cpp
Modular_Obs_Graph.cpp
)
# link libraries
target_include_directories(sogMBT PRIVATE "${BUDDY_DIR}/src" "${PARSER_DIR}/src")
target_link_libraries(sogMBT bdd RdP cli11)
\ No newline at end of file
target_link_libraries(sogMBT bdd RdP cli11)
# Installation folder
install(TARGETS sogMBT DESTINATION ${INSTALL_FOLDER})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment