Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/study' into feature/study
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 committed Sep 12, 2023
2 parents 015599d + 28e1e5d commit 6ecf2fc
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 5 deletions.
8 changes: 6 additions & 2 deletions src/libs/antares/logs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ source_group("misc\\logs" FILES ${SRC_LOGS})
add_library(${PROJ} ${SRC_LOGS})
add_library(Antares::${PROJ} ALIAS ${PROJ})

if(WIN32)
find_library(WSOCK32_LIBRARY wsock32)
find_library(WS2_32_LIBRARY ws2_32)
target_link_libraries(${PROJ} PUBLIC wsock32 ws2_32)
endif()
target_link_libraries(${PROJ}
PRIVATE
PUBLIC
yuni-static-core
Antares::sys
)

target_include_directories(${PROJ}
Expand Down
4 changes: 4 additions & 0 deletions src/solver/simulation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,8 @@ target_include_directories(libantares-solver-simulation PUBLIC

target_link_libraries(libantares-solver-simulation PRIVATE
Antares::infoCollection
PUBLIC
yuni-static-core
Antares::study
Antares::result_writer
)
1 change: 0 additions & 1 deletion src/tests/src/libs/antares/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ target_include_directories(tests-matrix-save
"${src_libs_antares}/array"
"${src_libs_antares}/io"
"${src_libs_antares}/jit"
"${src_libs_antares}/logs"
"${src_libs_antares}/memory/include"
"${CMAKE_CURRENT_SOURCE_DIR}/logs"
"${CMAKE_CURRENT_SOURCE_DIR}/jit"
Expand Down
1 change: 1 addition & 0 deletions src/tests/src/solver/simulation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ target_link_libraries(test-store-timeseries-number
test_utils_unit
libantares-solver-simulation
Antares::study
Antares::result_writer
)

# Linux
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#include "timeseries-numbers.h"
#include "BindingConstraintsTimeSeriesNumbersWriter.h"
#include "utils.h"
#include "antares/writer/writer_factory.h"
#include "antares/writer/result_format.h"
#include <antares/writer/writer_factory.h>
#include <antares/writer/result_format.h>

using namespace Antares::Solver;
using namespace Antares::Data;
Expand Down
1 change: 1 addition & 0 deletions src/ui/simulator/toolbox/components/datagrid/dbgrid.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#define __ANTARES_TOOLBOX_COMPONENT_DATAGRID_DBGRID_H__

#include <wx/grid.h>
#include <yuni/yuni.h>

namespace Antares
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#define __ANTARES_TOOLBOX_FILTER_OPERATOR_LIST_H__

#include <wx/string.h>
#include <yuni/yuni.h>
#include <vector>

namespace Antares
Expand Down
1 change: 1 addition & 0 deletions src/ui/simulator/toolbox/create.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <wx/sizer.h>
#include <wx/button.h>
#include <wx/stattext.h>
#include <yuni/yuni.h>

namespace Antares
{
Expand Down

0 comments on commit 6ecf2fc

Please sign in to comment.