# Set directory which contains all source files set(src_path src) # Gather source files get_fortran_source_files(${src_path} source_files) # Define library set(library_name part_kernel_f) add_library(${library_name} ${source_files}) # Set dependencies set(oss_dependencies deltares_common part_data_f part_io_f part_utils_f) oss_include_libraries(${library_name} oss_dependencies) if(UNIX) target_link_libraries(${library_name} ${oss_dependencies}) endif(UNIX) # Define how the files should be structured within Visual Studio source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${source_files}) set_target_properties (${library_name} PROPERTIES FOLDER engines_gpl/part) target_compile_options(${library_name} PRIVATE "${file_preprocessor_flag}")