mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: support wmakeLnInclude of C++ template files (.tcc, .tpp, .txx)
- can be used to avoid confusion with source files ENH: improve handling of '--' option termination (wmake scripts)
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
# \\ / A nd | www.openfoam.com
|
||||
# \\/ M anipulation |
|
||||
#-------------------------------------------------------------------------------
|
||||
# Copyright (C) 2019 OpenCFD Ltd.
|
||||
# Copyright (C) 2019-2022 OpenCFD Ltd.
|
||||
#-------------------------------------------------------------------------------
|
||||
# License
|
||||
# This file is part of OpenFOAM, distributed under GPL-3.0-or-later.
|
||||
@ -51,6 +51,9 @@ unset optRemoveFile optRemoveTmp optNoLines
|
||||
while [ "$#" -gt 0 ]
|
||||
do
|
||||
case "$1" in
|
||||
('') ;;
|
||||
(- | --) shift; break ;; # Stop option parsing
|
||||
|
||||
(-h | -help*) printHelp ;;
|
||||
|
||||
(-prefix=*) prefix="${1#*=}" ;;
|
||||
|
||||
Reference in New Issue
Block a user