Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
CoMISo
CoMISo
Commits
87e1d0d0
Commit
87e1d0d0
authored
Oct 15, 2020
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
link examples against target CoMISo::CoMISo
parent
93ac0594
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
17 additions
and
34 deletions
+17
-34
Examples/factored_solver/CMakeLists.txt
Examples/factored_solver/CMakeLists.txt
+1
-2
Examples/quadratic_solver/CMakeLists.txt
Examples/quadratic_solver/CMakeLists.txt
+1
-2
Examples/small_AQP/CMakeLists.txt
Examples/small_AQP/CMakeLists.txt
+1
-2
Examples/small_adolc/CMakeLists.txt
Examples/small_adolc/CMakeLists.txt
+1
-2
Examples/small_cplex_soc/CMakeLists.txt
Examples/small_cplex_soc/CMakeLists.txt
+1
-2
Examples/small_eigenproblem/CMakeLists.txt
Examples/small_eigenproblem/CMakeLists.txt
+1
-2
Examples/small_exact_constraint_satifaction_example/CMakeLists.txt
...small_exact_constraint_satifaction_example/CMakeLists.txt
+1
-2
Examples/small_factored_example/CMakeLists.txt
Examples/small_factored_example/CMakeLists.txt
+1
-2
Examples/small_finite_element/CMakeLists.txt
Examples/small_finite_element/CMakeLists.txt
+1
-2
Examples/small_linear_problem/CMakeLists.txt
Examples/small_linear_problem/CMakeLists.txt
+1
-2
Examples/small_miqp/CMakeLists.txt
Examples/small_miqp/CMakeLists.txt
+1
-2
Examples/small_nleast_squares/CMakeLists.txt
Examples/small_nleast_squares/CMakeLists.txt
+1
-2
Examples/small_nsolver/CMakeLists.txt
Examples/small_nsolver/CMakeLists.txt
+1
-2
Examples/small_quadratic_example/CMakeLists.txt
Examples/small_quadratic_example/CMakeLists.txt
+1
-2
Examples/small_quadratic_resolve_example/CMakeLists.txt
Examples/small_quadratic_resolve_example/CMakeLists.txt
+1
-2
Examples/small_sparseqr/CMakeLists.txt
Examples/small_sparseqr/CMakeLists.txt
+1
-2
Examples/small_symmetric_dirichlet/CMakeLists.txt
Examples/small_symmetric_dirichlet/CMakeLists.txt
+1
-2
No files found.
Examples/factored_solver/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (factored_solver ${sources} ${headers} )
set_target_properties
(
factored_solver PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
factored_solver
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/quadratic_solver/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (quadratic_solver ${sources} ${headers} )
set_target_properties
(
quadratic_solver PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
quadratic_solver
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_AQP/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_AQP ${sources} ${headers} )
set_target_properties
(
small_AQP PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_AQP
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_adolc/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_adolc ${sources} ${headers} )
set_target_properties
(
small_adolc PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_adolc
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_cplex_soc/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -7,6 +7,5 @@ acg_add_executable (small_cplex_soc ${sources} ${headers} )
set_target_properties
(
small_cplex_soc PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_cplex_soc
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_eigenproblem/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_eigenproblem ${sources} ${headers} )
set_target_properties
(
small_eigenproblem PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_eigenproblem
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_exact_constraint_satifaction_example/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_exact_constraint_satifaction_example ${sources} ${head
set_target_properties
(
small_exact_constraint_satifaction_example PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_exact_constraint_satifaction_example
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_factored_example/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_factored_solver ${sources} ${headers} )
set_target_properties
(
small_factored_solver PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_factored_solver
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_finite_element/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_finite_element ${sources} ${headers} )
set_target_properties
(
small_finite_element PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_finite_element
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_linear_problem/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_linear_problem ${sources} ${headers} )
set_target_properties
(
small_linear_problem PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_linear_problem
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_miqp/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_miqp ${sources} ${headers} )
set_target_properties
(
small_miqp PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_miqp
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_nleast_squares/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_nleast_squares ${sources} ${headers} )
set_target_properties
(
small_nleast_squares PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_nleast_squares
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_nsolver/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_nsolver ${sources} ${headers} )
set_target_properties
(
small_nsolver PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_nsolver
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_quadratic_example/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_quadratic_solver ${sources} ${headers} )
set_target_properties
(
small_quadratic_solver PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_quadratic_solver
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_quadratic_resolve_example/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_quadratic_resolve ${sources} ${headers} )
set_target_properties
(
small_quadratic_resolve PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_quadratic_resolve
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_sparseqr/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_sparseqr ${sources} ${headers} )
set_target_properties
(
small_sparseqr PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_sparseqr
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Examples/small_symmetric_dirichlet/CMakeLists.txt
View file @
87e1d0d0
...
...
@@ -6,6 +6,5 @@ acg_add_executable (small_symmetric_dirichlet ${sources} ${headers} )
set_target_properties
(
small_symmetric_dirichlet PROPERTIES INSTALL_RPATH_USE_LINK_PATH 1
)
target_link_libraries
(
small_symmetric_dirichlet
CoMISo
${
COMISO_LINK_LIBRARIES
}
CoMISo::CoMISo
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment