mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
11 lines
308 B
Python
11 lines
308 B
Python
import netgen.config
|
|
|
|
if __name__=="__main__":
|
|
import argparse
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--cmake-dir", help="print path to CMake config files", action='store_true')
|
|
args = parser.parse_args()
|
|
if(args.cmake_dir):
|
|
print(netgen.config.get_cmake_dir())
|
|
|