finalyze moving
This commit is contained in:
63
projects/SageOldSrc/CMakeLists.txt
Normal file
63
projects/SageOldSrc/CMakeLists.txt
Normal file
@@ -0,0 +1,63 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
set(project SageOldSrc)
|
||||
#set(CMAKE_C_STANDARD 11)
|
||||
#also named as libDB
|
||||
if (TARGET ${project})
|
||||
return()
|
||||
endif ()
|
||||
project(${project})
|
||||
message("processing ${project}")
|
||||
|
||||
# Read pathes to external sapfor directories
|
||||
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/../paths.txt")
|
||||
message("Found paths.txt, using custom paths.")
|
||||
FILE(STRINGS ../paths.txt SAPFOR_PATHS)
|
||||
else ()
|
||||
message("Not found paths.txt, using default paths.")
|
||||
FILE(STRINGS ../paths.default.txt SAPFOR_PATHS)
|
||||
endif ()
|
||||
foreach (NameAndValue ${SAPFOR_PATHS})
|
||||
# Strip leading spaces
|
||||
string(REGEX REPLACE "^[ ]+" "" NameAndValue ${NameAndValue})
|
||||
# Find variable name
|
||||
string(REGEX MATCH "^[^=]+" Name ${NameAndValue})
|
||||
# Find the value
|
||||
string(REPLACE "${Name}=" "" Value ${NameAndValue})
|
||||
# Set the variable, note the ../ because we are deeper than the file
|
||||
set(${Name} "../${Value}")
|
||||
endforeach ()
|
||||
|
||||
# if not default ${libdb_sources} must be set in ../paths.txt
|
||||
set(SOURCE_LIB
|
||||
${libdb_sources}/anal_ind.c
|
||||
${libdb_sources}/db.c
|
||||
${libdb_sources}/dbutils.c
|
||||
${libdb_sources}/db_unp.c
|
||||
${libdb_sources}/db_unp_comm.c
|
||||
${libdb_sources}/db_unp_vpc.c
|
||||
${libdb_sources}/garb_coll.c
|
||||
${libdb_sources}/glob_anal.c
|
||||
${libdb_sources}/ker_fun.c
|
||||
${libdb_sources}/list.c
|
||||
${libdb_sources}/make_nodes.c
|
||||
${libdb_sources}/mod_ref.c
|
||||
${libdb_sources}/ndeps.c
|
||||
${libdb_sources}/readnodes.c
|
||||
${libdb_sources}/sets.c
|
||||
${libdb_sources}/setutils.c
|
||||
${libdb_sources}/symb_alg.c
|
||||
${libdb_sources}/writenodes.c
|
||||
)
|
||||
|
||||
# if not default ${fdvm_include}, ${sage_include_1}, ${sage_include_2} must be set in ../paths.txt
|
||||
include_directories(${fdvm_include} ${sage_include_1} ${sage_include_2})
|
||||
add_library(SageOldSrc STATIC ${SOURCE_LIB})
|
||||
|
||||
if (MSVC_IDE)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP")
|
||||
else()
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3")
|
||||
endif()
|
||||
Reference in New Issue
Block a user