mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Remove contrib/cmake.
This mainly contained a bootstrap script that did nothing except say that it would be deleted soon. It has been 5 years, so it should be safe to go away now.
This commit is contained in:
parent
112dba559f
commit
55b70b4c7e
|
@ -1,48 +0,0 @@
|
||||||
#!/usr/bin/env python
|
|
||||||
"""
|
|
||||||
This script is an artifact of compromise that was
|
|
||||||
made when the CMake build system was first introduced
|
|
||||||
(see #461).
|
|
||||||
|
|
||||||
This script now does nothing. It remains only to not
|
|
||||||
break out-of-tree scripts that build Z3 using CMake.
|
|
||||||
|
|
||||||
Eventually this script will be removed.
|
|
||||||
"""
|
|
||||||
import argparse
|
|
||||||
import logging
|
|
||||||
import os
|
|
||||||
import pprint
|
|
||||||
import shutil
|
|
||||||
import sys
|
|
||||||
|
|
||||||
def main(args):
|
|
||||||
logging.basicConfig(level=logging.INFO)
|
|
||||||
parser = argparse.ArgumentParser(description=__doc__)
|
|
||||||
parser.add_argument('mode',
|
|
||||||
choices=['create', 'remove'],
|
|
||||||
help='The mode to use')
|
|
||||||
parser.add_argument("-l","--log-level",
|
|
||||||
type=str,
|
|
||||||
default="info",
|
|
||||||
dest="log_level",
|
|
||||||
choices=['debug','info','warning','error']
|
|
||||||
)
|
|
||||||
parser.add_argument("-H", "--hard-link",
|
|
||||||
action='store_true',
|
|
||||||
default=False,
|
|
||||||
dest='hard_link',
|
|
||||||
help='When using the create mode create hard links instead of copies'
|
|
||||||
)
|
|
||||||
pargs = parser.parse_args(args)
|
|
||||||
|
|
||||||
logLevel = getattr(logging, pargs.log_level.upper(),None)
|
|
||||||
logging.basicConfig(level=logLevel)
|
|
||||||
logging.warning('Use of this script is deprecated. The script will be removed in the future')
|
|
||||||
logging.warning('Action "{}" ignored'.format(pargs.mode))
|
|
||||||
if pargs.hard_link:
|
|
||||||
logging.warning('Hard link option ignored')
|
|
||||||
return 0
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
sys.exit(main(sys.argv[1:]))
|
|
|
@ -1,3 +0,0 @@
|
||||||
# Maintainers
|
|
||||||
|
|
||||||
- Dan Liew (@delcypher)
|
|
|
@ -1,6 +0,0 @@
|
||||||
add_executable(lp_tst lp_main.cpp lp.cpp $<TARGET_OBJECTS:util> $<TARGET_OBJECTS:polynomial> $<TARGET_OBJECTS:nlsat> $<TARGET_OBJECTS:lp> )
|
|
||||||
target_compile_definitions(lp_tst PRIVATE ${Z3_COMPONENT_CXX_DEFINES})
|
|
||||||
target_compile_options(lp_tst PRIVATE ${Z3_COMPONENT_CXX_FLAGS})
|
|
||||||
target_include_directories(lp_tst PRIVATE ${Z3_COMPONENT_EXTRA_INCLUDE_DIRS})
|
|
||||||
target_link_libraries(lp_tst PRIVATE ${Z3_DEPENDENT_LIBS})
|
|
||||||
z3_append_linker_flag_list_to_target(lp_tst ${Z3_DEPENDENT_EXTRA_CXX_LINK_FLAGS})
|
|
Loading…
Reference in a new issue