@@ -6,7 +6,7 @@ set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)
66project (fsmod VERSION 0.4 DESCRIPTION "SimGrid-based File System simulation module" )
77
88include (GNUInstallDirs)
9- find_package (SimGrid 4.0. 1 REQUIRED)
9+ find_package (SimGrid 4.1 REQUIRED)
1010
1111include_directories (
1212 ${CMAKE_SOURCE_DIR} /include
@@ -67,7 +67,7 @@ if((NOT DEFINED enable_python) OR enable_python)
6767 find_package (Python3 COMPONENTS Interpreter)
6868 if (NOT Python3_Interpreter_FOUND)
6969 message (FATAL_ERROR "Please install Python (version 3 or higher) to compile FSMod Python bindings." )
70- endif ()
70+ endif ()
7171 set (PYTHON_EXECUTABLE ${Python3_EXECUTABLE} )
7272
7373 find_package (pybind11 CONFIG)
@@ -107,7 +107,7 @@ if(enable_python)
107107 LIBRARY_OUTPUT_NAME fsmod
108108 CXX_VISIBILITY_PRESET "default"
109109 INTERPROCEDURAL_OPTIMIZATION FALSE )
110-
110+
111111 set_property (TARGET python-bindings
112112 APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES} " )
113113
@@ -119,7 +119,7 @@ if(enable_python)
119119 endif ("${CMAKE_INSTALL_PREFIX} " STREQUAL "/usr" )
120120 endif ()
121121 install (TARGETS python-bindings
122- LIBRARY DESTINATION "${FSMOD_PYTHON_LIBDIR} " )
122+ LIBRARY DESTINATION "${FSMOD_PYTHON_LIBDIR} " )
123123 else ()
124124 message (FATAL_ERROR "Please install pybind11-dev to build the Python bindings (or disable that option)." )
125125 endif ()
@@ -147,7 +147,7 @@ set(SOURCE_FILES
147147 src/OneDiskStorage.cpp
148148 src/OneRemoteDiskStorage.cpp
149149 src/fsmod_version.cpp
150- )
150+ )
151151
152152set (HEADER_FILES
153153 include /fsmod/File.hpp
0 commit comments