Skip to content

Commit

Permalink
resolving dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Alirezalm committed Sep 6, 2023
1 parent 077dc70 commit 064857d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions DOSE/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ add_library(dose SHARED ${DOSE_SRC})
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)

file(GLOB INC "include/*.h")

install(TARGETS dose DESTINATION lib )

install(FILES ${INC} DESTINATION include )
install(FILES ${INC} DESTINATION DOSE/include )
2 changes: 1 addition & 1 deletion src/Algorithm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ file(GLOB INC "*.h")
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
install(TARGETS algorithms DESTINATION lib )

install(FILES ${INC} DESTINATION include )
install(FILES ${INC} DESTINATION Algorithm )
2 changes: 1 addition & 1 deletion src/MIPSolver/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ file(GLOB INC "*.h")

install(TARGETS mip DESTINATION lib )

install(FILES ${INC} DESTINATION include )
install(FILES ${INC} DESTINATION MIPSolver )
2 changes: 1 addition & 1 deletion src/Model/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ file(GLOB INC "*.h")

install(TARGETS model DESTINATION lib )

install(FILES ${INC} DESTINATION include )
install(FILES ${INC} DESTINATION Model )
2 changes: 1 addition & 1 deletion src/PrimalSolver/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ file(GLOB INC "*.h")

install(TARGETS primal DESTINATION lib )

install(FILES ${INC} DESTINATION include )
install(FILES ${INC} DESTINATION PrimalSolver )
2 changes: 1 addition & 1 deletion src/Solver/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ file(GLOB INC "*.h")

install(TARGETS solver DESTINATION lib )

install(FILES ${INC} DESTINATION include )
install(FILES ${INC} DESTINATION Solver )
2 changes: 1 addition & 1 deletion src/Tasks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)

install(TARGETS tasks DESTINATION lib )

install(FILES ${INC} DESTINATION include )
install(FILES ${INC} DESTINATION Tasks )

0 comments on commit 064857d

Please sign in to comment.