Skip to content

Commit 9da4b3a

Browse files
committed
we do mirror push from this commit
1 parent b4b0d3e commit 9da4b3a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.21.0)
2-
project(AsFem2)
2+
project(AsFem)
33

44
set(CMAKE_CXX_STANDARD 17)
55

@@ -198,7 +198,7 @@ elseif(MSVC)
198198
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /GL /openmp")
199199
endif()
200200

201-
message("AsFem2 will be compiled in ${CMAKE_BUILD_TYPE} mode !")
201+
message("AsFem will be compiled in ${CMAKE_BUILD_TYPE} mode !")
202202
message("CXX compiler options are: ${CMAKE_CXX_FLAGS}")
203203
message("The executable file 'asfem' will be generated in ${CMAKE_CURRENT_SOURCE_DIR}/bin folder")
204204
###############################################
@@ -210,10 +210,10 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
210210
include(SourceCode.cmake)
211211

212212
##################################################
213-
add_executable(asfem2 ${inc} ${src})
213+
add_executable(asfem ${inc} ${src})
214214

215215
# target_link_libraries(asfem ${MPI_LIB} ${PETSC_LIB} ${METIS_LIB} ${GKLIB})
216-
target_link_libraries(asfem2 ${MPI_LIB} ${PETSC_LIB})
216+
target_link_libraries(asfem ${MPI_LIB} ${PETSC_LIB})
217217

218218
###############################################
219219
### set LTO for asfem ###
@@ -232,4 +232,4 @@ if(CMAKE_BUILD_TYPE STREQUAL "Release")
232232
endif()
233233
endif()
234234

235-
include(Test.cmake)
235+
include(Test.cmake)

0 commit comments

Comments
 (0)