File tree Expand file tree Collapse file tree 4 files changed +946
-604
lines changed
Expand file tree Collapse file tree 4 files changed +946
-604
lines changed Original file line number Diff line number Diff line change 1- cmake_minimum_required (VERSION 3.8) # Minimum cmake requirement
1+ cmake_minimum_required (VERSION 3.8) # Minimum cmake requirement
22
3- project (SimpleQPSolver VERSION 1.0.0 LANGUAGES CXX) # Can use ${PROJECT_NAME} as a reference
3+ project (SimpleQPSolver VERSION 1.0.0 LANGUAGES CXX) # Can use ${PROJECT_NAME} as a reference
44
55set (CMAKE_CXX_STANDARD 14)
66
@@ -14,10 +14,14 @@ set(CMAKE_BUILD_TYPE Release)
1414#
1515# Then run `make` as usual.
1616
17- find_package (Eigen3 REQUIRED) # Eigen libraries must be installed
17+ find_package (Eigen3 REQUIRED) # Eigen libraries must be installed
1818
19- include_directories (include ) # Location of header files
19+ include_directories (include ) # Location of header files
2020
21- add_executable (test test /test .cpp) # Declare location of source files for executable
21+ add_executable (test test /test .cpp) # Declare location of source files for executable
2222
23- target_link_libraries (test Eigen3::Eigen) # Link Eigen libraries to the executable
23+ target_link_libraries (test Eigen3::Eigen) # Link Eigen libraries to the executable
24+
25+ add_executable (data test /data.cpp)
26+
27+ target_link_libraries (data Eigen3::Eigen) # Link Eigen libraries to the executable
You can’t perform that action at this time.
0 commit comments