This commit is contained in:
2020-04-12 18:55:29 -06:00
parent 26480bcc76
commit 4081c9783d
56 changed files with 551 additions and 835 deletions

View File

@@ -3,48 +3,16 @@ project(FinalProject)
set(CMAKE_CXX_STANDARD 11)
SET(CMAKE_CXX_COMPILER mpicxx)
find_package(MPI REQUIRED)
find_package(nlohmann_json 3.2.0 REQUIRED)
add_definitions(-DOMPI_SKIP_MPICXX)
set(HEADER_FILES
)
set(SOURCE_FILES
)
set(CMAKE_CXX_STANDARD 17)
add_executable(HW10 ${HEADER_FILES} ${SOURCE_FILES} main.cpp)
set_property(TARGET HW10 PROPERTY CXX_STANDARD 11)
target_compile_options(HW10 PRIVATE -Wall -Wextra -pedantic -Wl,--stack,10000000 -O3)
target_link_libraries(HW10 PRIVATE MPI::MPI_C)
# Prepare a pre-build step to run clang-format over all the [ch]pp source files.
# Start by finding the location of the clang-format executable.
#
find_program(CLANG_FORMAT "clang-format")
if (CLANG_FORMAT)
#
# Need to take the simple source file locations used for the project and get their full
# file system locations for use in putting together the clang-format command line
#
unset(SOURCE_FILES_PATHS)
foreach(SOURCE_FILE ${HEADER_FILES} ${SOURCE_FILES} ${UNIT_TEST_FILES} main.cpp)
get_source_file_property(WHERE ${SOURCE_FILE} LOCATION)
set(SOURCE_FILES_PATHS ${SOURCE_FILES_PATHS} ${WHERE})
endforeach()
#
# This creates the clang-format target/command
#
add_custom_target(
ClangFormat
COMMAND ${CLANG_FORMAT}
-i
-style=file
${SOURCE_FILES_PATHS}
)
#
# This makes the clang-format target a dependency of the main GoogleTestIntro project
#
# add_dependencies(Weights ClangFormat)
else()
message("Unable to find clang-format")
endif()
target_link_libraries(HW10 PRIVATE MPI::MPI_C nlohmann_json::nlohmann_json)