Skip to content
Snippets Groups Projects
Commit adee6fbf authored by 数学の武士's avatar 数学の武士
Browse files

cmake build fixes

parent e428de69
No related branches found
No related tags found
No related merge requests found
...@@ -160,6 +160,7 @@ add_library(sfx_lib ${SOURCES_LIB}) ...@@ -160,6 +160,7 @@ add_library(sfx_lib ${SOURCES_LIB})
set_property(TARGET sfx PROPERTY LINKER_LANGUAGE Fortran) set_property(TARGET sfx PROPERTY LINKER_LANGUAGE Fortran)
target_include_directories(sfx PUBLIC ${CMAKE_BINARY_DIR}/modules/) target_include_directories(sfx PUBLIC ${CMAKE_BINARY_DIR}/modules/)
target_include_directories(sfx PUBLIC ${HEADERS_DIRS}) target_include_directories(sfx PUBLIC ${HEADERS_DIRS})
target_include_directories(sfx_lib PUBLIC ${HEADERS_DIRS})
if(USE_CONFIG_PARSER) if(USE_CONFIG_PARSER)
target_link_libraries(sfx config_parser_F config_parser_CXX) target_link_libraries(sfx config_parser_F config_parser_CXX)
...@@ -167,7 +168,13 @@ if(USE_CONFIG_PARSER) ...@@ -167,7 +168,13 @@ if(USE_CONFIG_PARSER)
endif(USE_CONFIG_PARSER) endif(USE_CONFIG_PARSER)
set_property(TARGET sfx_lib PROPERTY LINKER_LANGUAGE Fortran) set_property(TARGET sfx_lib PROPERTY LINKER_LANGUAGE Fortran)
set(CMAKE_Fortran_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>") if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
SET(CMAKE_C_ARCHIVE_CREATE "<CMAKE_AR> Scr <TARGET> <LINK_FLAGS> <OBJECTS>")
SET(CMAKE_CXX_ARCHIVE_CREATE "<CMAKE_AR> Scr <TARGET> <LINK_FLAGS> <OBJECTS>")
SET(CMAKE_C_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
SET(CMAKE_CXX_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
endif("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
# set(CMAKE_Fortran_ARCHIVE_FINISH "$<CMAKE_RANLIB> -no_warning_for_no_symbols -c $<TARGET>")
target_include_directories(sfx_lib PUBLIC ${CMAKE_BINARY_DIR}/modules/) target_include_directories(sfx_lib PUBLIC ${CMAKE_BINARY_DIR}/modules/)
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment