File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
examples/advanced/library/FixedVariable Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11add_executable (fixedVariable.exe fixedVariable.cpp )
2+ add_executable (ufl.exe u.cpp )
23
34target_include_directories (fixedVariable.exe PRIVATE
45 ${CMAKE_SOURCE_DIR} /src)
1314endif ()
1415
1516# installing executables and libraries
16- install (TARGETS fixedVariable.exe
17+ install (TARGETS fixedVariable.exe ufl.exe
1718 RUNTIME DESTINATION ${CMAKE_CURRENT_SOURCE_DIR} )
1819
1920# Add a test for this example
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ void initParams1(NOMAD::AllParameters &p)
5757 // parameters creation
5858 size_t n = 5 ; // Number of variables
5959 p.getPbParams ()->setAttributeValue (" DIMENSION" , n);
60- p.getEvalParams ()->setAttributeValue (" BB_EXE" , std::string (" ./u .exe" ));
60+ p.getEvalParams ()->setAttributeValue (" BB_EXE" , std::string (" ./ufl .exe" ));
6161
6262 NOMAD::Point x0 (n, 6.0 );
6363 x0[0 ] = 4 ;
You can’t perform that action at this time.
0 commit comments