Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Dec 19, 2024
1 parent cba7b31 commit 78e083f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/libs/antares/io/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ source_group("io" FILES ${SRC_IO})
add_library(io
${SRC_IO}
)
add_library(Antares::io ALIAS io)


target_link_libraries(io
PRIVATE
Expand All @@ -26,4 +28,4 @@ target_include_directories(io

install(DIRECTORY include/antares
DESTINATION "include"
)
)
2 changes: 1 addition & 1 deletion src/solver/modeler/loadFiles/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ target_link_libraries(loadModelerFiles
PUBLIC
Antares::antares-study-system-model
PRIVATE
io
Antares::io
Antares::systemParser
Antares::modelParser
Antares::modelConverter
Expand Down
3 changes: 2 additions & 1 deletion src/solver/modeler/loadFiles/readLibraries.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ std::vector<Study::SystemModel::Library> loadLibraries(const fs::path& studyPath
{
if (entry.path().extension() != ".yml")
{
logs.info() << "File ignored because of wrong extension: " << entry.path();
logs.info() << entry.path()
<< " ignored, only files having the `.yml` extension are loaded";
continue;
}

Expand Down

0 comments on commit 78e083f

Please sign in to comment.