1 Star 0 Fork 0

董理/flogger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CMakeLists.txt 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
董理 提交于 2024-03-29 22:07 . Update CMake minimum version
cmake_minimum_required(VERSION 3.5)
project(flogger LANGUAGES Fortran)
if (CMAKE_Fortran_COMPILER_ID STREQUAL "Intel")
add_definitions(-DINTEL)
elseif (CMAKE_Fortran_COMPILER_ID STREQUAL "PGI")
add_definitions(-DPGI)
endif ()
set(CMAKE_Fortran_MODULE_DIRECTORY "${CMAKE_BINARY_DIR}")
get_directory_property(parent_dir PARENT_DIRECTORY)
if (EXISTS ${PROJECT_SOURCE_DIR}/lib/container/CMakeLists.txt AND NOT parent_dir)
add_subdirectory(lib/container)
endif ()
if (EXISTS ${PROJECT_SOURCE_DIR}/lib/string/CMakeLists.txt AND NOT parent_dir)
add_subdirectory(lib/string)
endif ()
set(source_files
src/face_mod.F90
src/log_mod.F90
src/flogger.F90
)
add_library(flogger ${source_files})
target_link_libraries(flogger fortran_container fortran_string)
if (RUN_TEST)
add_executable(test_flogger src/test_flogger.F90)
target_link_libraries(test_flogger flogger)
endif ()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
FORTRAN
1
https://gitee.com/dongli85/flogger.git
[email protected]:dongli85/flogger.git
dongli85
flogger
flogger
master

搜索帮助