simplify batch files for release/debug installation
This commit is contained in:
parent
5425beb53d
commit
803b4fbe5f
|
|
@ -1,19 +1,26 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
REM copy ngspice.exe, codemodels *.cm to C:\Spice or Spice64
|
REM copy ngspice.exe, codemodels *.cm to Spice64
|
||||||
REM arguments to make-install-vngspice:
|
REM arguments to make-install-vngspice:
|
||||||
REM %1: path to ngspice.exe, %2: fftw
|
REM %1: path to ngspice.exe, %2: release/debug %3: fftw, %4: omp
|
||||||
|
|
||||||
set dst=c:\Spice64
|
if "%2" == "release" (
|
||||||
set cmsrc=.\codemodels\x64\Release
|
set dst=c:\Spice64
|
||||||
|
set cmsrc=.\codemodels\x64\Release
|
||||||
|
)
|
||||||
|
if "%2" == "debug" (
|
||||||
|
set dst=c:\Spice64d
|
||||||
|
set cmsrc=.\codemodels\x64\Debug
|
||||||
|
copy .\spinitd64 .\spinit
|
||||||
|
)
|
||||||
|
|
||||||
mkdir %dst%\bin
|
mkdir %dst%\bin
|
||||||
mkdir %dst%\lib\ngspice
|
mkdir %dst%\lib\ngspice
|
||||||
|
|
||||||
if "%2" == "omp" (
|
if "%3" == "omp" (
|
||||||
copy "c:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.42.34433\debug_nonredist\x64\Microsoft.VC143.OpenMP.LLVM\libomp140.x86_64.dll" %dst%\bin\
|
copy "c:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.42.34433\debug_nonredist\x64\Microsoft.VC143.OpenMP.LLVM\libomp140.x86_64.dll" %dst%\bin\
|
||||||
)
|
)
|
||||||
if "%3" == "omp" (
|
if "%4" == "omp" (
|
||||||
copy "c:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.42.34433\debug_nonredist\x64\Microsoft.VC143.OpenMP.LLVM\libomp140.x86_64.dll" %dst%\bin\
|
copy "c:\Program Files\Microsoft Visual Studio\2022\Community\VC\Redist\MSVC\14.42.34433\debug_nonredist\x64\Microsoft.VC143.OpenMP.LLVM\libomp140.x86_64.dll" %dst%\bin\
|
||||||
)
|
)
|
||||||
copy %cmsrc%\analog64.cm %dst%\lib\ngspice\analog.cm
|
copy %cmsrc%\analog64.cm %dst%\lib\ngspice\analog.cm
|
||||||
|
|
@ -25,19 +32,19 @@ copy %cmsrc%\spice2poly64.cm %dst%\lib\ngspice\spice2poly.cm
|
||||||
copy xspice\verilog\ivlng.dll %dst%\lib\ngspice\ivlng.dll
|
copy xspice\verilog\ivlng.dll %dst%\lib\ngspice\ivlng.dll
|
||||||
copy xspice\verilog\shim.vpi %dst%\lib\ngspice\ivlng.vpi
|
copy xspice\verilog\shim.vpi %dst%\lib\ngspice\ivlng.vpi
|
||||||
|
|
||||||
if "%2" == "fftw" goto copy2-64
|
if "%3" == "fftw" goto copy-fftw
|
||||||
|
|
||||||
copy %1\ngspice.exe %dst%\bin\
|
copy %1\ngspice.exe %dst%\bin\
|
||||||
copy .\spinitr64 .\spinit
|
|
||||||
goto end
|
goto end
|
||||||
|
|
||||||
:copy2-64
|
:copy-fftw
|
||||||
copy %1\ngspice.exe %dst%\bin\
|
copy %1\ngspice.exe %dst%\bin\
|
||||||
copy ..\..\fftw-3.3-dll64\libfftw3-3.dll %dst%\bin\
|
copy ..\..\fftw-3.3-dll64\libfftw3-3.dll %dst%\bin\
|
||||||
|
|
||||||
:end
|
:end
|
||||||
mkdir %dst%\share\ngspice\scripts\src\ngspice
|
mkdir %dst%\share\ngspice\scripts\src\ngspice
|
||||||
copy .\spinit_all %dst%\share\ngspice\scripts\spinit
|
copy .\spinit_all %dst%\share\ngspice\scripts\spinit
|
||||||
|
|
||||||
cd ..\src
|
cd ..\src
|
||||||
copy ciderinit %dst%\share\ngspice\scripts
|
copy ciderinit %dst%\share\ngspice\scripts
|
||||||
copy devaxis %dst%\share\ngspice\scripts
|
copy devaxis %dst%\share\ngspice\scripts
|
||||||
|
|
|
||||||
|
|
@ -13,57 +13,22 @@ EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|x64 = Debug|x64
|
Debug|x64 = Debug|x64
|
||||||
Debug|x86 = Debug|x86
|
|
||||||
Debug-fftw|x64 = Debug-fftw|x64
|
|
||||||
Debug-fftw|x86 = Debug-fftw|x86
|
|
||||||
Release|x64 = Release|x64
|
Release|x64 = Release|x64
|
||||||
Release|x86 = Release|x86
|
|
||||||
ReleaseOMP|x64 = ReleaseOMP|x64
|
ReleaseOMP|x64 = ReleaseOMP|x64
|
||||||
ReleaseOMP|x86 = ReleaseOMP|x86
|
|
||||||
ReleaseOMP-fftw|x64 = ReleaseOMP-fftw|x64
|
|
||||||
ReleaseOMP-fftw|x86 = ReleaseOMP-fftw|x86
|
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug|x64.ActiveCfg = Debug|x64
|
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug|x64.Build.0 = Debug|x64
|
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug|x64.Build.0 = Debug|x64
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug|x86.ActiveCfg = Debug|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug|x86.Build.0 = Debug|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug-fftw|x64.ActiveCfg = Debug-fftw|x64
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug-fftw|x64.Build.0 = Debug-fftw|x64
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug-fftw|x86.ActiveCfg = Debug-fftw|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Debug-fftw|x86.Build.0 = Debug-fftw|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Release|x64.ActiveCfg = Release|x64
|
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Release|x64.ActiveCfg = Release|x64
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Release|x64.Build.0 = Release|x64
|
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Release|x64.Build.0 = Release|x64
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Release|x86.ActiveCfg = Release|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.Release|x86.Build.0 = Release|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP|x64.ActiveCfg = ReleaseOMP|x64
|
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP|x64.ActiveCfg = ReleaseOMP|x64
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP|x64.Build.0 = ReleaseOMP|x64
|
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP|x64.Build.0 = ReleaseOMP|x64
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP|x86.ActiveCfg = ReleaseOMP|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP|x86.Build.0 = ReleaseOMP|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP-fftw|x64.ActiveCfg = ReleaseOMP-fftw|x64
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP-fftw|x64.Build.0 = ReleaseOMP-fftw|x64
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP-fftw|x86.ActiveCfg = ReleaseOMP-fftw|Win32
|
|
||||||
{83E315C7-EDD3-4F6B-AF28-87A92A4FA49A}.ReleaseOMP-fftw|x86.Build.0 = ReleaseOMP-fftw|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug|x64.ActiveCfg = Debug|x64
|
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug|x64.Build.0 = Debug|x64
|
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug|x64.Build.0 = Debug|x64
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug|x86.ActiveCfg = Debug|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug|x86.Build.0 = Debug|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug-fftw|x64.ActiveCfg = Debug-fftw|x64
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug-fftw|x64.Build.0 = Debug-fftw|x64
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug-fftw|x86.ActiveCfg = Debug-fftw|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Debug-fftw|x86.Build.0 = Debug-fftw|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Release|x64.ActiveCfg = Release|x64
|
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Release|x64.ActiveCfg = Release|x64
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Release|x64.Build.0 = Release|x64
|
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Release|x64.Build.0 = Release|x64
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Release|x86.ActiveCfg = Release|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.Release|x86.Build.0 = Release|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP|x64.ActiveCfg = Release|x64
|
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP|x64.ActiveCfg = Release|x64
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP|x64.Build.0 = Release|x64
|
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP|x64.Build.0 = Release|x64
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP|x86.ActiveCfg = Release|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP|x86.Build.0 = Release|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP-fftw|x64.ActiveCfg = ReleaseOMP-fftw|x64
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP-fftw|x64.Build.0 = ReleaseOMP-fftw|x64
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP-fftw|x86.ActiveCfg = ReleaseOMP-fftw|Win32
|
|
||||||
{B8DD41C5-70C6-4183-9018-C4B518E8D36A}.ReleaseOMP-fftw|x86.Build.0 = ReleaseOMP-fftw|Win32
|
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|
|
||||||
|
|
@ -1,30 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
<ProjectConfiguration Include="Debug-fftw|Win32">
|
|
||||||
<Configuration>Debug-fftw</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug-fftw|x64">
|
|
||||||
<Configuration>Debug-fftw</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseOMP-fftw|Win32">
|
|
||||||
<Configuration>ReleaseOMP-fftw</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseOMP-fftw|x64">
|
|
||||||
<Configuration>ReleaseOMP-fftw</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
|
|
@ -33,10 +9,6 @@
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="ReleaseOMP|Win32">
|
|
||||||
<Configuration>ReleaseOMP</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="ReleaseOMP|x64">
|
<ProjectConfiguration Include="ReleaseOMP|x64">
|
||||||
<Configuration>ReleaseOMP</Configuration>
|
<Configuration>ReleaseOMP</Configuration>
|
||||||
<Platform>x64</Platform>
|
<Platform>x64</Platform>
|
||||||
|
|
@ -47,78 +19,32 @@
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-fftw|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-fftw|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP-fftw|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|x64'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|x64'" Label="Configuration">
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP-fftw|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug-fftw|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
<Import Project="PropertySheet.props" />
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug-fftw|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
<Import Project="PropertySheet.props" />
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP-fftw|Win32'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|x64'" Label="PropertySheets">
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|x64'" Label="PropertySheets">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
<Import Project="PropertySheet.props" />
|
||||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP-fftw|x64'" Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
@ -127,178 +53,22 @@
|
||||||
<OutDir>$(ProjectName)\$(Configuration).$(Platform)\</OutDir>
|
<OutDir>$(ProjectName)\$(Configuration).$(Platform)\</OutDir>
|
||||||
<IntDir>$(ProjectName)\$(Configuration).$(Platform)\obj\</IntDir>
|
<IntDir>$(ProjectName)\$(Configuration).$(Platform)\obj\</IntDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<LinkIncremental />
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-fftw|Win32'">
|
|
||||||
<LinkIncremental />
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<LinkIncremental />
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<LinkIncremental />
|
<LinkIncremental />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug-fftw|x64'">
|
|
||||||
<LinkIncremental />
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<LinkIncremental />
|
<LinkIncremental />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|Win32'">
|
|
||||||
<LinkIncremental />
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP-fftw|Win32'">
|
|
||||||
<LinkIncremental />
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|x64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|x64'">
|
||||||
<LinkIncremental />
|
<LinkIncremental />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP-fftw|x64'">
|
|
||||||
<LinkIncremental />
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Message>force recompilation of conf.c with actual date</Message>
|
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<CustomBuildStep>
|
|
||||||
<Message />
|
|
||||||
<Command />
|
|
||||||
</CustomBuildStep>
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<AdditionalIncludeDirectories>..\src\maths\poly;..\src\frontend;..\src\spicelib\devices;tmp-bison;..\src\spicelib\parser;src\include;..\src\include;..\src\include\cppduals;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;SIMULATOR;XSPICE;SHARED_MODULE;_MSC_PLATFORM_TOOLSET=$(PlatformToolsetVersion);NGDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<PreprocessToFile>false</PreprocessToFile>
|
|
||||||
<PreprocessSuppressLineNumbers>false</PreprocessSuppressLineNumbers>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<ExceptionHandling />
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
||||||
<PrecompiledHeader />
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<CompileAs>Default</CompileAs>
|
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
||||||
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>psapi.lib;KLU_COMPLEX.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<GenerateMapFile>false</GenerateMapFile>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<HeapReserveSize>0</HeapReserveSize>
|
|
||||||
<HeapCommitSize>0</HeapCommitSize>
|
|
||||||
<StackReserveSize>0</StackReserveSize>
|
|
||||||
<StackCommitSize>0</StackCommitSize>
|
|
||||||
<LinkTimeCodeGeneration />
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention />
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<LargeAddressAware>true</LargeAddressAware>
|
|
||||||
<AdditionalLibraryDirectories>KLU/Debug/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-fftw|Win32'">
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Message>force recompilation of conf.c with actual date</Message>
|
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<CustomBuildStep>
|
|
||||||
<Message>
|
|
||||||
</Message>
|
|
||||||
<Command>
|
|
||||||
</Command>
|
|
||||||
</CustomBuildStep>
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<AdditionalIncludeDirectories>..\src\maths\poly;..\src\frontend;..\src\spicelib\devices;tmp-bison;..\src\spicelib\parser;src\include;..\src\include;..\src\include\cppduals;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;SIMULATOR;XSPICE;SHARED_MODULE;_MSC_PLATFORM_TOOLSET=$(PlatformToolsetVersion);NGDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<PreprocessToFile>false</PreprocessToFile>
|
|
||||||
<PreprocessSuppressLineNumbers>false</PreprocessSuppressLineNumbers>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<ExceptionHandling>
|
|
||||||
</ExceptionHandling>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<CompileAs>Default</CompileAs>
|
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
||||||
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>psapi.lib;KLU_COMPLEX.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<GenerateMapFile>false</GenerateMapFile>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<HeapReserveSize>0</HeapReserveSize>
|
|
||||||
<HeapCommitSize>0</HeapCommitSize>
|
|
||||||
<StackReserveSize>0</StackReserveSize>
|
|
||||||
<StackCommitSize>0</StackCommitSize>
|
|
||||||
<LinkTimeCodeGeneration>
|
|
||||||
</LinkTimeCodeGeneration>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention>
|
|
||||||
</DataExecutionPrevention>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<LargeAddressAware>true</LargeAddressAware>
|
|
||||||
<AdditionalLibraryDirectories>KLU/Debug/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Message>force recompilation of conf.c with actual date</Message>
|
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<CustomBuildStep>
|
|
||||||
<Message />
|
|
||||||
<Command />
|
|
||||||
</CustomBuildStep>
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Full</Optimization>
|
|
||||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<AdditionalIncludeDirectories>..\src\maths\poly;..\src\frontend;..\src\spicelib\devices;tmp-bison;..\src\spicelib\parser;src\include;..\src\include;..\src\include\cppduals;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;SIMULATOR;XSPICE;SHARED_MODULE;_MSC_PLATFORM_TOOLSET=$(PlatformToolsetVersion);%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<ExceptionHandling />
|
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
||||||
<PrecompiledHeader />
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<CompileAs>Default</CompileAs>
|
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
||||||
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>psapi.lib;KLU_COMPLEX.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<HeapReserveSize>0</HeapReserveSize>
|
|
||||||
<HeapCommitSize>0</HeapCommitSize>
|
|
||||||
<StackReserveSize>0</StackReserveSize>
|
|
||||||
<StackCommitSize>0</StackCommitSize>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention />
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<LargeAddressAware>true</LargeAddressAware>
|
|
||||||
<AdditionalLibraryDirectories>KLU/Release/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
<Message>force recompilation of conf.c with current date</Message>
|
<Message>force recompilation of conf.c with current date</Message>
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
||||||
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
|
lib /machine:x64 /def:..\..\fftw-3.3-dll64\libfftw3-3.def /out:$(IntDir)libfftw3-3.lib</Command>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<Optimization>Disabled</Optimization>
|
<Optimization>Disabled</Optimization>
|
||||||
|
|
@ -335,53 +105,23 @@
|
||||||
</DataExecutionPrevention>
|
</DataExecutionPrevention>
|
||||||
<AdditionalLibraryDirectories>KLU\x64\Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>KLU\x64\Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
<PostBuildEvent>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-fftw|x64'">
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<PreBuildEvent>
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
<Message>force recompilation of conf.c with current date</Message>
|
make-install-sharedspice.bat $(OutDir) debug fftw
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj
|
</Command>
|
||||||
lib /machine:x64 /def:..\..\fftw-3.3-dll64\libfftw3-3.def /out:$(IntDir)libfftw3-3.lib</Command>
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
</PreBuildEvent>
|
make-install-sharedspice.bat $(OutDir) debug
|
||||||
<ClCompile>
|
</Command>
|
||||||
<Optimization>Disabled</Optimization>
|
</PostBuildEvent>
|
||||||
<AdditionalIncludeDirectories>..\src\maths\poly;..\src\osdi;..\src\frontend;..\src\spicelib\devices;tmp-bison;..\src\spicelib\parser;src\include;..\src\include;..\src\include\cppduals;.;..\..\fftw-3.3-dll64;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>HAVE_LIBFFTW3;_CRT_SECURE_NO_DEPRECATE;SIMULATOR;SHARED_MODULE;CONFIG64;_MSC_PLATFORM_TOOLSET=$(PlatformToolsetVersion);NGDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<PreprocessToFile>false</PreprocessToFile>
|
|
||||||
<PreprocessSuppressLineNumbers>false</PreprocessSuppressLineNumbers>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<ExceptionHandling>
|
|
||||||
</ExceptionHandling>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<CompileAs>Default</CompileAs>
|
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
||||||
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
||||||
<AdditionalOptions>/openmp:llvm %(AdditionalOptions)</AdditionalOptions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>psapi.lib;KLU_COMPLEX.lib;$(IntDir)libfftw3-3.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<GenerateMapFile>false</GenerateMapFile>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<HeapReserveSize>0</HeapReserveSize>
|
|
||||||
<HeapCommitSize>0</HeapCommitSize>
|
|
||||||
<StackReserveSize>4194304</StackReserveSize>
|
|
||||||
<StackCommitSize>1048576</StackCommitSize>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention>
|
|
||||||
</DataExecutionPrevention>
|
|
||||||
<AdditionalLibraryDirectories>KLU\x64\Debug;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
<Message>force recompilation of conf.c with current date</Message>
|
<Message>force recompilation of conf.c with current date</Message>
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
||||||
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
|
lib /machine:x64 /def:..\..\fftw-3.3-dll64\libfftw3-3.def /out:$(IntDir)libfftw3-3.lib</Command>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>
|
<Message>
|
||||||
|
|
@ -425,96 +165,23 @@ lib /machine:x64 /def:..\..\fftw-3.3-dll64\libfftw3-3.def /out:$(IntDir)libfftw3
|
||||||
<DataExecutionPrevention>
|
<DataExecutionPrevention>
|
||||||
</DataExecutionPrevention>
|
</DataExecutionPrevention>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
<PostBuildEvent>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|Win32'">
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<PreBuildEvent>
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
<Message>force recompilation of conf.c with actual date</Message>
|
make-install-sharedspice.bat $(OutDir) release fftw
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
</Command>
|
||||||
</PreBuildEvent>
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
<ClCompile>
|
make-install-sharedspice.bat $(OutDir) release
|
||||||
<Optimization>Full</Optimization>
|
</Command>
|
||||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
</PostBuildEvent>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<AdditionalIncludeDirectories>..\src\maths\poly;..\src\frontend;..\src\spicelib\devices;tmp-bison;..\src\spicelib\parser;src\include;..\src\include;..\src\include\cppduals;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;SIMULATOR;XSPICE;SHARED_MODULE;_MSC_PLATFORM_TOOLSET=$(PlatformToolsetVersion);USE_OMP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<ExceptionHandling />
|
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
||||||
<OpenMPSupport>true</OpenMPSupport>
|
|
||||||
<PrecompiledHeader />
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<CompileAs>Default</CompileAs>
|
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
||||||
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>psapi.lib;KLU_COMPLEX.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<HeapReserveSize>0</HeapReserveSize>
|
|
||||||
<HeapCommitSize>0</HeapCommitSize>
|
|
||||||
<StackReserveSize>0</StackReserveSize>
|
|
||||||
<StackCommitSize>0</StackCommitSize>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention />
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<LargeAddressAware>true</LargeAddressAware>
|
|
||||||
<AdditionalLibraryDirectories>KLU/Release/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP-fftw|Win32'">
|
|
||||||
<PreBuildEvent>
|
|
||||||
<Message>force recompilation of conf.c with actual date</Message>
|
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Full</Optimization>
|
|
||||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<AdditionalIncludeDirectories>..\src\maths\poly;..\src\frontend;..\src\spicelib\devices;tmp-bison;..\src\spicelib\parser;src\include;..\src\include;..\src\include\cppduals;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>_CRT_SECURE_NO_DEPRECATE;SIMULATOR;XSPICE;SHARED_MODULE;_MSC_PLATFORM_TOOLSET=$(PlatformToolsetVersion);USE_OMP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<ExceptionHandling>
|
|
||||||
</ExceptionHandling>
|
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
||||||
<OpenMPSupport>true</OpenMPSupport>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<CompileAs>Default</CompileAs>
|
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
||||||
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>psapi.lib;KLU_COMPLEX.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<HeapReserveSize>0</HeapReserveSize>
|
|
||||||
<HeapCommitSize>0</HeapCommitSize>
|
|
||||||
<StackReserveSize>0</StackReserveSize>
|
|
||||||
<StackCommitSize>0</StackCommitSize>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention>
|
|
||||||
</DataExecutionPrevention>
|
|
||||||
<TargetMachine>MachineX86</TargetMachine>
|
|
||||||
<LargeAddressAware>true</LargeAddressAware>
|
|
||||||
<AdditionalLibraryDirectories>KLU/Release/;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|x64'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP|x64'">
|
||||||
<PreBuildEvent>
|
<PreBuildEvent>
|
||||||
<Message>force recompilation of conf.c with current date</Message>
|
<Message>force recompilation of conf.c with current date</Message>
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj</Command>
|
||||||
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
|
lib /machine:x64 /def:..\..\fftw-3.3-dll64\libfftw3-3.def /out:$(IntDir)libfftw3-3.lib</Command>
|
||||||
</PreBuildEvent>
|
</PreBuildEvent>
|
||||||
<CustomBuildStep>
|
<CustomBuildStep>
|
||||||
<Message>
|
<Message>
|
||||||
|
|
@ -561,58 +228,15 @@ lib /machine:x64 /def:..\..\fftw-3.3-dll64\libfftw3-3.def /out:$(IntDir)libfftw3
|
||||||
<LargeAddressAware>true</LargeAddressAware>
|
<LargeAddressAware>true</LargeAddressAware>
|
||||||
<AdditionalLibraryDirectories>KLU\x64\Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>KLU\x64\Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
<PostBuildEvent>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseOMP-fftw|x64'">
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<PreBuildEvent>
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
<Message>force recompilation of conf.c with current date</Message>
|
make-install-sharedspice.bat $(OutDir) release fftw omp
|
||||||
<Command>if exist $(IntDir)conf.obj del $(IntDir)conf.obj
|
|
||||||
lib /machine:x64 /def:..\..\fftw-3.3-dll64\libfftw3-3.def /out:$(IntDir)libfftw3-3.lib</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<CustomBuildStep>
|
|
||||||
<Message>
|
|
||||||
</Message>
|
|
||||||
<Command>
|
|
||||||
</Command>
|
</Command>
|
||||||
</CustomBuildStep>
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
<ClCompile>
|
make-install-sharedspice.bat $(OutDir) release omp
|
||||||
<Optimization>Full</Optimization>
|
</Command>
|
||||||
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
</PostBuildEvent>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<AdditionalIncludeDirectories>..\src\maths\poly;..\src\osdi;..\src\frontend;..\src\spicelib\devices;tmp-bison;..\src\spicelib\parser;src\include;..\src\include;..\src\include\cppduals;.;..\..\fftw-3.3-dll64;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<PreprocessorDefinitions>HAVE_LIBFFTW3;_CRT_SECURE_NO_DEPRECATE;SIMULATOR;SHARED_MODULE;CONFIG64;_MSC_PLATFORM_TOOLSET=$(PlatformToolsetVersion);USE_OMP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<ExceptionHandling>
|
|
||||||
</ExceptionHandling>
|
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
|
||||||
<OpenMPSupport>
|
|
||||||
</OpenMPSupport>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>Level4</WarningLevel>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<CompileAs>Default</CompileAs>
|
|
||||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
||||||
<LanguageStandard>stdcpp14</LanguageStandard>
|
|
||||||
<AdditionalOptions>/openmp:llvm %(AdditionalOptions)</AdditionalOptions>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>psapi.lib;KLU_COMPLEX.lib;$(IntDir)libfftw3-3.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<SubSystem>Windows</SubSystem>
|
|
||||||
<HeapReserveSize>0</HeapReserveSize>
|
|
||||||
<HeapCommitSize>0</HeapCommitSize>
|
|
||||||
<StackReserveSize>4194304</StackReserveSize>
|
|
||||||
<StackCommitSize>1048576</StackCommitSize>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
|
||||||
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
||||||
<DataExecutionPrevention>
|
|
||||||
</DataExecutionPrevention>
|
|
||||||
<LargeAddressAware>true</LargeAddressAware>
|
|
||||||
<AdditionalLibraryDirectories>KLU\x64\Release;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\src\ciderlib\oned\oneddefs.h" />
|
<ClInclude Include="..\src\ciderlib\oned\oneddefs.h" />
|
||||||
|
|
|
||||||
|
|
@ -168,10 +168,10 @@
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<!-- Check, if FFTW-Folder exist -->
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspiced.bat $(OutDir) fftw
|
make-install-vngspice.bat $(OutDir) debug fftw
|
||||||
</Command>
|
</Command>
|
||||||
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspiced.bat $(OutDir)
|
make-install-vngspice.bat $(OutDir) debug
|
||||||
</Command>
|
</Command>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<Manifest>
|
<Manifest>
|
||||||
|
|
@ -234,10 +234,10 @@
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<!-- Check, if FFTW-Folder exist -->
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspice.bat $(OutDir) fftw
|
make-install-vngspice.bat $(OutDir) release fftw
|
||||||
</Command>
|
</Command>
|
||||||
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspice.bat $(OutDir)
|
make-install-vngspice.bat $(OutDir) release
|
||||||
</Command>
|
</Command>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<Manifest>
|
<Manifest>
|
||||||
|
|
@ -292,10 +292,10 @@
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<!-- Check, if FFTW-Folder exist -->
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspiced.bat $(OutDir) fftw
|
make-install-vngspice.bat $(OutDir) debug fftw
|
||||||
</Command>
|
</Command>
|
||||||
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspiced.bat $(OutDir)
|
make-install-vngspice.bat $(OutDir) debug
|
||||||
</Command>
|
</Command>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<Manifest>
|
<Manifest>
|
||||||
|
|
@ -356,10 +356,10 @@
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<!-- Check, if FFTW-Folder exist -->
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspice.bat $(OutDir) fftw
|
make-install-vngspice.bat $(OutDir) release fftw
|
||||||
</Command>
|
</Command>
|
||||||
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspice.bat $(OutDir)
|
make-install-vngspice.bat $(OutDir) release
|
||||||
</Command>
|
</Command>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<Manifest>
|
<Manifest>
|
||||||
|
|
@ -424,10 +424,10 @@
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<!-- Check, if FFTW-Folder exist -->
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspice.bat $(OutDir) fftw omp
|
make-install-vngspice.bat $(OutDir) release fftw omp
|
||||||
</Command>
|
</Command>
|
||||||
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspice.bat $(OutDir) omp
|
make-install-vngspice.bat $(OutDir) release omp
|
||||||
</Command>
|
</Command>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<Manifest>
|
<Manifest>
|
||||||
|
|
@ -490,10 +490,10 @@
|
||||||
<PostBuildEvent>
|
<PostBuildEvent>
|
||||||
<!-- Check, if FFTW-Folder exist -->
|
<!-- Check, if FFTW-Folder exist -->
|
||||||
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspice.bat $(OutDir) fftw omp
|
make-install-vngspice.bat $(OutDir) release fftw omp
|
||||||
</Command>
|
</Command>
|
||||||
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
<Command Condition="!Exists('$(ProjectDir)..\..\fftw-3.3-dll64')">
|
||||||
make-install-vngspice.bat $(OutDir) omp
|
make-install-vngspice.bat $(OutDir) release omp
|
||||||
</Command>
|
</Command>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
<Manifest>
|
<Manifest>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue