Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Problem with using libsumo

Hello,
I am happy to learn that sumo 1.2.0 was released with cool new features and bug fixes. I tried to install sumo v1.2.0 again using cmake so I can use libsumo. This time I decided to use python version 3.7 and for this reason I created a conda environment that uses python 3.7. Having this environment activated the python.exe is in path and so when using cmake correctly configures the python to desired executable. SUMO_LIBRARIES were correctly set up in PATH. I changed the SUMO_HOME to the newly downloaded directory. I have the PYTHONPATH=%SUMO_HOME%/tools/libsumo;%SUMO_HOME%/tools/% and the PATH to point to these directories as-well.

I have attached the CMakeCache.txt. Also attached you can find CMakeOutput.log and CMakeError.log

I have again tried to import libsumo but it did't work. Attached you can find an image with the error.

Thank you,
Tom.

Quoting cchadj01@xxxxxxxxxxxx:

Hello,

 I am trying to run sumo simulation faster so I decided to use libsumo.
 I followed the guide to build using cmake.
 I have set up the SUMO_HOME.
in SUMO_HOME/tools/libsumo I have libsumo.py (which helps import _libsumo), the _libsumo.pyd dll and some other stuff. I have set the PATH to have SUMO_HOME/tools/libsumo. I have also set PYTHONPATH to SUMO_HOME/tools/libsumo. I use conda and I have an environment called sumo which uses python 2.7. I have build sumo by following the guide at https://sumo.dlr.de/wiki/Installing/Windows_CMake (command line) and having the sumo environment activated during that process. I have also build as release (Visual Studio 2013 Win64).

 I have created a simple script just importing libsumo like so:

import os
import sys

if 'SUMO_HOME' in os.environ:
    tools = os.path.join(os.environ['SUMO_HOME'], 'tools')
    sys.path.append(tools)
else:
    sys.exit("please declare environment variable 'SUMO_HOME'")

from sumolib import checkBinary # noqa
import traci
import sumolib
import libsumo as libs

and I get this error:


Traceback (most recent call last):
File "C:/Users/VR_Lab/source/repos/sumo/tools/libsumo/test.py", line 14, in <module>
    import libsumo as libs
File "C:\Users\VR_Lab\source\repos\sumo\tools\libsumo\libsumo.py", line 17, in <module>
    _libsumo = swig_import_helper()
File "C:\Users\VR_Lab\source\repos\sumo\tools\libsumo\libsumo.py", line 16, in swig_import_helper
    return importlib.import_module('_libsumo')
File "C:\ProgramData\Anaconda2\envs\sumo\lib\importlib\__init__.py", line 37, in import_module
    __import__(name)
ImportError: DLL load failed: The specified procedure could not be found.


This script was called with python 2.7 (having the same conda environment activated as the one it was build from).
 The PYTHONPATH is correctly set to SUMO_HOME/tools/libsumo.
 Why does that happen?

I would like to add that in https://sumo.dlr.de/wiki/Libsumo it says to use the extended package and has a reference to a link but the referenced package doesn't have any CMakeLists.txt so I can use cmake.

Thank you,
Tom






_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Attachment: problem-dll-load-failed.png
Description: PNG image

# This is the CMakeCache file.
# For build in directory: c:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build
# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.

########################
# EXTERNAL cache entries
########################

//Path to a program.
ANT_EXECUTABLE:FILEPATH=ANT_EXECUTABLE-NOTFOUND

//Append the suffix to every generated binary
BINARY_SUFFIX:STRING=

//Build shared libraries (DLLs).
BUILD_SHARED_LIBS:BOOL=OFF

//Try to download / enable all optional libraries (use only EPL
// clean libraries, if set to false)
CHECK_OPTIONAL_LIBS:BOOL=ON

//Choose the type of build.
CMAKE_BUILD_TYPE:STRING=Release

//Semicolon separated list of supported configuration types, only
// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything
// else will be ignored.
CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo

//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc

//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1

//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG

//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG

//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG

//Libraries linked by default with all C++ applications.
CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib

//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3

//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1

//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG

//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG

//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG

//Libraries linked by default with all C applications.
CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib

//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64

//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL

//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO

//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO

//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL

//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/SUMO

//Path to a program.
CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/link.exe

//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64

//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL

//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO

//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO

//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL

//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=SUMO

//RC compiler
CMAKE_RC_COMPILER:FILEPATH=rc

//Flags for Windows Resource Compiler during all build types.
CMAKE_RC_FLAGS:STRING=/DWIN32

//Flags for Windows Resource Compiler during DEBUG builds.
CMAKE_RC_FLAGS_DEBUG:STRING=/D_DEBUG

//Flags for Windows Resource Compiler during MINSIZEREL builds.
CMAKE_RC_FLAGS_MINSIZEREL:STRING=

//Flags for Windows Resource Compiler during RELEASE builds.
CMAKE_RC_FLAGS_RELEASE:STRING=

//Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=

//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64

//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL

//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO

//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO

//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL

//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO

//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO

//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64

//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make.  This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE

//Macros or defines to add when compiling
COMPILE_DEFINITIONS:STRING=

//Enable output of coverage data (applies to gcc/clang builds only)
COVERAGE:BOOL=OFF

//Build Java Bindings
ENABLE_JAVA_BINDINGS:BOOL=ON

//Build Python Bindings
ENABLE_PYTHON_BINDINGS:BOOL=ON

//Path to a file.
FFMPEG_INCLUDE_DIR1:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/include

//Path to a file.
FFMPEG_INCLUDE_DIR2:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/include

//Path to a file.
FFMPEG_INCLUDE_DIR3:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/include

//Path to a file.
FFMPEG_INCLUDE_DIR4:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/include

//Path to a file.
FFMPEG_INCLUDE_DIR5:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/include

//Path to a library.
FFMPEG_avcodec_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/lib/avcodec.lib

//Path to a library.
FFMPEG_avdevice_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/lib/avdevice.lib

//Path to a library.
FFMPEG_avformat_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/lib/avformat.lib

//Path to a library.
FFMPEG_avutil_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/lib/avutil.lib

//Path to a library.
FFMPEG_swscale_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/FFMPEG-3.4.1_64/lib/swscale.lib

//Path to a program.
FOX_CONFIG:FILEPATH=FOX_CONFIG-NOTFOUND

//Path to a file.
FOX_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/fox-1.6.55_64/include

//Path to a library.
FOX_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/fox-1.6.55_64/lib/FOXDLL-1.6.lib

//Path to a file.
GDAL_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/proj_gdal-1911_64/include

//Path to a library.
GDAL_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/proj_gdal-1911_64/lib/gdal_i.lib

//Git command line client
GIT_EXECUTABLE:FILEPATH=C:/Program Files/Git/cmd/git.exe

//Path to a file.
GL2PS_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/gl2ps-1.4.0_64

//Path to a library.
GL2PS_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/gl2ps-1.4.0_64/Release/gl2ps.lib

//Path to a file.
JAVA_AWT_INCLUDE_PATH:PATH=C:/Program Files/Java/jdk1.8.0_191/include

//Path to a library.
JAVA_AWT_LIBRARY:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/lib/jawt.lib

//Path to a file.
JAVA_INCLUDE_PATH:PATH=C:/Program Files/Java/jdk1.8.0_191/include

//Path to a file.
JAVA_INCLUDE_PATH2:PATH=C:/Program Files/Java/jdk1.8.0_191/include/win32

//Path to a library.
JAVA_JVM_LIBRARY:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/lib/jvm.lib

//Path to a program.
Java_IDLJ_EXECUTABLE:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/bin/idlj.exe

//Path to a program.
Java_JARSIGNER_EXECUTABLE:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/bin/jarsigner.exe

//Path to a program.
Java_JAR_EXECUTABLE:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/bin/jar.exe

//Path to a program.
Java_JAVAC_EXECUTABLE:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/bin/javac.exe

//Path to a program.
Java_JAVADOC_EXECUTABLE:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/bin/javadoc.exe

//Path to a program.
Java_JAVAH_EXECUTABLE:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/bin/javah.exe

//Path to a program.
Java_JAVA_EXECUTABLE:FILEPATH=C:/Program Files/Java/jdk1.8.0_191/bin/java.exe

//Use all available cores for building (applies to Visual Studio
// only)
MULTITHREADED_BUILD:BOOL=ON

//Path to a program.
MVN_EXECUTABLE:FILEPATH=MVN_EXECUTABLE-NOTFOUND

//Path to a file.
OPENTHREADS_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include

//Path to a library.
OPENTHREADS_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/OpenThreads.lib

//Path to a library.
OPENTHREADS_LIBRARY_DEBUG:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/OpenThreadsd.lib

//Path to a file.
OSGDB_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include

//Path to a library.
OSGDB_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgDB.lib

//Path to a library.
OSGDB_LIBRARY_DEBUG:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgDBd.lib

//Path to a file.
OSGGA_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include

//Path to a library.
OSGGA_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgGA.lib

//Path to a library.
OSGGA_LIBRARY_DEBUG:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgGAd.lib

//Path to a file.
OSGTEXT_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include

//Path to a library.
OSGTEXT_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgText.lib

//Path to a library.
OSGTEXT_LIBRARY_DEBUG:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgTextd.lib

//Path to a file.
OSGUTIL_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include

//Path to a library.
OSGUTIL_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgUtil.lib

//Path to a library.
OSGUTIL_LIBRARY_DEBUG:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgUtild.lib

//Path to a file.
OSGVIEWER_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include

//Path to a library.
OSGVIEWER_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgViewer.lib

//Path to a library.
OSGVIEWER_LIBRARY_DEBUG:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgViewerd.lib

//Path to a file.
OSG_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include

//Path to a library.
OSG_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osg.lib

//Path to a library.
OSG_LIBRARY_DEBUG:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgd.lib

//Enable output of profiling data (applies to gcc/clang builds
// only)
PROFILING:BOOL=OFF

//Path to a file.
PROJ_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/proj_gdal-1911_64/include

//Path to a library.
PROJ_LIBRARY:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/proj_gdal-1911_64/lib/proj_i.lib

//Path to a library.
PYTHON_DEBUG_LIBRARY:FILEPATH=PYTHON_DEBUG_LIBRARY-NOTFOUND

//Path to a program.
PYTHON_EXECUTABLE:FILEPATH=C:/Users/VR_Lab/.conda/envs/sumo-3.7/python.exe

//Path to a file.
PYTHON_INCLUDE_DIR:PATH=C:/Users/VR_Lab/.conda/envs/sumo-3.7/include

//Path to a library.
PYTHON_LIBRARY:FILEPATH=C:/Users/VR_Lab/.conda/envs/sumo-3.7/libs/python37.lib

//Path to a library.
PYTHON_LIBRARY_DEBUG:FILEPATH=PYTHON_LIBRARY_DEBUG-NOTFOUND

//Value Computed by CMake
SUMO_BINARY_DIR:STATIC=C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build

//Location of SUMOLibraries dependencies
SUMO_LIBRARIES:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries

//Value Computed by CMake
SUMO_SOURCE_DIR:STATIC=C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0

//Enable generation of a shared library for the utility functions
// for option handling, XML parsing etc.
SUMO_UTILS:BOOL=OFF

//Path to a file.
SWIG_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/swigwin-3.0.12/Lib

//Swig version
SWIG_VERSION:STRING=3.0.12

//Xerces-C++ include directory
XercesC_INCLUDE_DIR:PATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/include

//Xerces-C++ libraries (debug)
XercesC_LIBRARY_DEBUG:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/lib/xerces-c_3D.lib

//Xerces-C++ libraries (release)
XercesC_LIBRARY_RELEASE:FILEPATH=C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/lib/xerces-c_3.lib

//Path to a library.
_FFMPEG_z_LIBRARY_:FILEPATH=C:/ProgramData/Anaconda2/Library/lib/z.lib

//Dependencies for the target
_libsumo_LIB_DEPENDS:STATIC=general;traciserver;general;libsumostatic;general;netload;general;microsim_cfmodels;general;microsim_engine;general;microsim_lcmodels;general;microsim_devices;general;microsim_trigger;general;microsim_output;general;microsim_pedestrians;general;microsim_actions;general;microsim_traffic_lights;general;microsim;general;mesosim;general;utils_emissions;general;foreign_phemlight;general;utils_vehicle;general;utils_distribution;general;utils_shapes;general;utils_options;general;utils_xml;general;utils_geom;general;utils_common;general;utils_importio;general;utils_iodevices;general;foreign_tcpip;optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/lib/xerces-c_3.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/lib/xerces-c_3D.lib;general;C:/Users/VR_Lab/source/repos/SUMOLibraries/proj_gdal-1911_64/lib/proj_i.lib;general;ws2_32;general;C:/Users/VR_Lab/source/repos/SUMOLibraries/fox-1.6.55_64/lib/FOXDLL-1.6.lib;general;C:/Users/VR_Lab/.conda/envs/sumo-3.7/libs/python37.lib;

//Dependencies for target
activitygen_activities_LIB_DEPENDS:STATIC=

//Dependencies for target
activitygen_city_LIB_DEPENDS:STATIC=

//Dependencies for target
foreign_eulerspiral_LIB_DEPENDS:STATIC=

//Dependencies for target
foreign_phemlight_LIB_DEPENDS:STATIC=

//Dependencies for target
foreign_tcpip_LIB_DEPENDS:STATIC=

//Value Computed by CMake
gtest_BINARY_DIR:STATIC=C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/googletest-build

//Dependencies for target
gtest_LIB_DEPENDS:STATIC=

//Value Computed by CMake
gtest_SOURCE_DIR:STATIC=C:/Users/VR_Lab/source/repos/SUMOLibraries/googletest-1.8.0/googletest

//Build gtest's sample programs.
gtest_build_samples:BOOL=OFF

//Build all of gtest's own tests.
gtest_build_tests:BOOL=OFF

//Disable uses of pthreads in gtest.
gtest_disable_pthreads:BOOL=OFF

//Use shared (DLL) run-time lib even when Google Test is built
// as static lib.
gtest_force_shared_crt:BOOL=ON

//Build gtest with internal symbols hidden in shared libraries.
gtest_hide_internal_symbols:BOOL=OFF

//Dependencies for the target
gtest_main_LIB_DEPENDS:STATIC=general;gtest;

//Dependencies for target
gui_LIB_DEPENDS:STATIC=

//Dependencies for target
gui_dialogs_LIB_DEPENDS:STATIC=

//Dependencies for target
guinetload_LIB_DEPENDS:STATIC=

//Dependencies for target
guisim_LIB_DEPENDS:STATIC=

//Dependencies for the target
libsumojni_LIB_DEPENDS:STATIC=general;traciserver;general;libsumostatic;general;netload;general;microsim_cfmodels;general;microsim_engine;general;microsim_lcmodels;general;microsim_devices;general;microsim_trigger;general;microsim_output;general;microsim_pedestrians;general;microsim_actions;general;microsim_traffic_lights;general;microsim;general;mesosim;general;utils_emissions;general;foreign_phemlight;general;utils_vehicle;general;utils_distribution;general;utils_shapes;general;utils_options;general;utils_xml;general;utils_geom;general;utils_common;general;utils_importio;general;utils_iodevices;general;foreign_tcpip;optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/lib/xerces-c_3.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/lib/xerces-c_3D.lib;general;C:/Users/VR_Lab/source/repos/SUMOLibraries/proj_gdal-1911_64/lib/proj_i.lib;general;ws2_32;general;C:/Users/VR_Lab/source/repos/SUMOLibraries/fox-1.6.55_64/lib/FOXDLL-1.6.lib;

//Dependencies for target
libsumostatic_LIB_DEPENDS:STATIC=

//Dependencies for target
mesogui_LIB_DEPENDS:STATIC=

//Dependencies for target
mesosim_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_actions_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_cfmodels_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_devices_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_engine_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_lcmodels_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_output_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_pedestrians_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_traffic_lights_LIB_DEPENDS:STATIC=

//Dependencies for target
microsim_trigger_LIB_DEPENDS:STATIC=

//Dependencies for target
netbuild_LIB_DEPENDS:STATIC=

//Dependencies for target
netedit_additionals_LIB_DEPENDS:STATIC=

//Dependencies for target
netedit_changes_LIB_DEPENDS:STATIC=

//Dependencies for target
netedit_demandelements_LIB_DEPENDS:STATIC=

//Dependencies for target
netedit_dialogs_LIB_DEPENDS:STATIC=

//Dependencies for target
netedit_frames_LIB_DEPENDS:STATIC=

//Dependencies for target
netedit_netelements_LIB_DEPENDS:STATIC=

//Dependencies for target
netimport_LIB_DEPENDS:STATIC=

//Dependencies for target
netimport_vissim_LIB_DEPENDS:STATIC=

//Dependencies for target
netimport_vissim_tempstructs_LIB_DEPENDS:STATIC=

//Dependencies for target
netimport_vissim_typeloader_LIB_DEPENDS:STATIC=

//Dependencies for target
netload_LIB_DEPENDS:STATIC=

//Dependencies for target
netwrite_LIB_DEPENDS:STATIC=

//Dependencies for target
od_LIB_DEPENDS:STATIC=

//Dependencies for target
osgview_LIB_DEPENDS:STATIC=

//Dependencies for target
router_LIB_DEPENDS:STATIC=

//Dependencies for target
traciserver_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_common_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_distribution_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_emissions_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_foxtools_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_geom_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_gui_cursors_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_gui_div_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_gui_globjects_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_gui_images_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_gui_settings_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_gui_shortcuts_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_gui_tracker_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_gui_windows_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_importio_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_iodevices_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_options_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_shapes_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_traci_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_vehicle_LIB_DEPENDS:STATIC=

//Dependencies for target
utils_xml_LIB_DEPENDS:STATIC=


########################
# INTERNAL cache entries
########################

//STRINGS property for variable: CMAKE_BUILD_TYPE
CMAKE_BUILD_TYPE-STRINGS:INTERNAL=Debug;Release
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=11
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Visual Studio 12 2013 Win64
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Have include pthread.h
CMAKE_HAVE_PTHREAD_H:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=88
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_COMPILER
CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
CMAKE_RC_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS
CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG
CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL
CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE
CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO
CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.11
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_INCLUDE_DIR1
FFMPEG_INCLUDE_DIR1-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_INCLUDE_DIR2
FFMPEG_INCLUDE_DIR2-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_INCLUDE_DIR3
FFMPEG_INCLUDE_DIR3-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_INCLUDE_DIR4
FFMPEG_INCLUDE_DIR4-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_INCLUDE_DIR5
FFMPEG_INCLUDE_DIR5-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_avcodec_LIBRARY
FFMPEG_avcodec_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_avdevice_LIBRARY
FFMPEG_avdevice_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_avformat_LIBRARY
FFMPEG_avformat_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_avutil_LIBRARY
FFMPEG_avutil_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFMPEG_swscale_LIBRARY
FFMPEG_swscale_LIBRARY-ADVANCED:INTERNAL=1
//Details about finding GDAL
FIND_PACKAGE_MESSAGE_DETAILS_GDAL:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/proj_gdal-1911_64/lib/gdal_i.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/proj_gdal-1911_64/include][v()]
//Details about finding GL2PS
FIND_PACKAGE_MESSAGE_DETAILS_GL2PS:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/gl2ps-1.4.0_64/Release/gl2ps.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/gl2ps-1.4.0_64][v()]
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Program Files/Git/cmd/git.exe][v2.16.1.windows.4()]
//Details about finding JNI
FIND_PACKAGE_MESSAGE_DETAILS_JNI:INTERNAL=[C:/Program Files/Java/jdk1.8.0_191/lib/jawt.lib][C:/Program Files/Java/jdk1.8.0_191/lib/jvm.lib][C:/Program Files/Java/jdk1.8.0_191/include][C:/Program Files/Java/jdk1.8.0_191/include/win32][C:/Program Files/Java/jdk1.8.0_191/include][v()]
//Details about finding Java
FIND_PACKAGE_MESSAGE_DETAILS_Java:INTERNAL=[C:/Program Files/Java/jdk1.8.0_191/bin/java.exe][C:/Program Files/Java/jdk1.8.0_191/bin/jar.exe][C:/Program Files/Java/jdk1.8.0_191/bin/javac.exe][C:/Program Files/Java/jdk1.8.0_191/bin/javah.exe][C:/Program Files/Java/jdk1.8.0_191/bin/javadoc.exe][v1.8.0_191()]
//Details about finding OpenSceneGraph
FIND_PACKAGE_MESSAGE_DETAILS_OpenSceneGraph:INTERNAL=[optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgGA.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgGAd.lib;optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgViewer.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgViewerd.lib;optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgUtil.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgUtild.lib;optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgDB.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgDBd.lib;optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgText.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgTextd.lib;optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osg.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgd.lib;optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/OpenThreads.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/OpenThreadsd.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include][v3.4.0(3.4.0)]
//Details about finding OpenThreads
FIND_PACKAGE_MESSAGE_DETAILS_OpenThreads:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/OpenThreads.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include][v()]
//Details about finding PythonInterp
FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[C:/Users/VR_Lab/.conda/envs/sumo-3.7/python.exe][v3.7.3()]
//Details about finding PythonLibs
FIND_PACKAGE_MESSAGE_DETAILS_PythonLibs:INTERNAL=[C:/Users/VR_Lab/.conda/envs/sumo-3.7/libs/python37.lib][C:/Users/VR_Lab/.conda/envs/sumo-3.7/include][v3.7.3()]
//Details about finding SWIG
FIND_PACKAGE_MESSAGE_DETAILS_SWIG:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/swigwin-3.0.12/swig.exe][C:/Users/VR_Lab/source/repos/SUMOLibraries/swigwin-3.0.12/Lib][v3.0.12(3.0)]
//Details about finding Threads
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
//Details about finding XercesC
FIND_PACKAGE_MESSAGE_DETAILS_XercesC:INTERNAL=[optimized;C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/lib/xerces-c_3.lib;debug;C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/lib/xerces-c_3D.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/msvc12/xerces-c-3.2.0_64/include][3.2.0][v3.2.0()]
//Details about finding osg
FIND_PACKAGE_MESSAGE_DETAILS_osg:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osg.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include][v()]
//Details about finding osgDB
FIND_PACKAGE_MESSAGE_DETAILS_osgDB:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgDB.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include][v()]
//Details about finding osgGA
FIND_PACKAGE_MESSAGE_DETAILS_osgGA:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgGA.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include][v()]
//Details about finding osgText
FIND_PACKAGE_MESSAGE_DETAILS_osgText:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgText.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include][v()]
//Details about finding osgUtil
FIND_PACKAGE_MESSAGE_DETAILS_osgUtil:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgUtil.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include][v()]
//Details about finding osgViewer
FIND_PACKAGE_MESSAGE_DETAILS_osgViewer:INTERNAL=[C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/lib/osgViewer.lib][C:/Users/VR_Lab/source/repos/SUMOLibraries/OSG-3.4.0_64/include][v()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GL2PS_INCLUDE_DIR
GL2PS_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GL2PS_LIBRARY
GL2PS_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: JAVA_AWT_INCLUDE_PATH
JAVA_AWT_INCLUDE_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: JAVA_AWT_LIBRARY
JAVA_AWT_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: JAVA_INCLUDE_PATH
JAVA_INCLUDE_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: JAVA_INCLUDE_PATH2
JAVA_INCLUDE_PATH2-ADVANCED:INTERNAL=1
//ADVANCED property for variable: JAVA_JVM_LIBRARY
JAVA_JVM_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Java_IDLJ_EXECUTABLE
Java_IDLJ_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Java_JARSIGNER_EXECUTABLE
Java_JARSIGNER_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Java_JAR_EXECUTABLE
Java_JAR_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Java_JAVAC_EXECUTABLE
Java_JAVAC_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Java_JAVADOC_EXECUTABLE
Java_JAVADOC_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Java_JAVAH_EXECUTABLE
Java_JAVAH_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Java_JAVA_EXECUTABLE
Java_JAVA_EXECUTABLE-ADVANCED:INTERNAL=1
//The version of OSG which was detected
OPENSCENEGRAPH_VERSION:INTERNAL=3.4.0
//ADVANCED property for variable: PYTHON_DEBUG_LIBRARY
PYTHON_DEBUG_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_EXECUTABLE
PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_INCLUDE_DIR
PYTHON_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_LIBRARY
PYTHON_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_LIBRARY_DEBUG
PYTHON_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SWIG_DIR
SWIG_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SWIG_VERSION
SWIG_VERSION-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XercesC_INCLUDE_DIR
XercesC_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XercesC_LIBRARY_DEBUG
XercesC_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XercesC_LIBRARY_RELEASE
XercesC_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: _FFMPEG_z_LIBRARY_
_FFMPEG_z_LIBRARY_-ADVANCED:INTERNAL=1

Determining if the include file pthread.h exists failed with the following output:
Change Dir: C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_ff4aa.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
Microsoft (R) Build Engine version 12.0.31010.0

[Microsoft .NET Framework, version 4.0.30319.42000]

Copyright (C) Microsoft Corporation. All rights reserved.



Build started 4/16/2019 11:42:09 PM.

Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_ff4aa.vcxproj" on node 1 (default targets).

PrepareForBuild:

  Creating directory "cmTC_ff4aa.dir\Debug\".

  Creating directory "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\".

  Creating directory "cmTC_ff4aa.dir\Debug\cmTC_ff4aa.tlog\".

InitializeBuildStatus:

  Creating "cmTC_ff4aa.dir\Debug\cmTC_ff4aa.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_ff4aa.dir\Debug\\" /Fd"cmTC_ff4aa.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

  Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64

  Copyright (C) Microsoft Corporation.  All rights reserved.

  

  cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_ff4aa.dir\Debug\\" /Fd"cmTC_ff4aa.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c"

  

  CheckIncludeFile.c

C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1): fatal error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_ff4aa.vcxproj]

Done Building Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_ff4aa.vcxproj" (default targets) -- FAILED.



Build FAILED.



"C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_ff4aa.vcxproj" (default target) (1) ->

(ClCompile target) -> 

  C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\CheckIncludeFile.c(1): fatal error C1083: Cannot open include file: 'pthread.h': No such file or directory [C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_ff4aa.vcxproj]



    0 Warning(s)

    1 Error(s)



Time Elapsed 00:00:00.29



The system is: Windows - 10.0.17134 - AMD64
The system is: Windows - 10.0.17134 - AMD64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler:  
Build flags: 
Id flags:  

The output was:
0
Microsoft (R) Build Engine version 12.0.31010.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.

Build started 4/16/2019 11:42:02 PM.
Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\3.11.3\CompilerIdC\CompilerIdC.vcxproj" on node 1 (default targets).
PrepareForBuild:
  Creating directory "Debug\".
  Creating directory "Debug\CompilerIdC.tlog\".
InitializeBuildStatus:
  Creating "Debug\CompilerIdC.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
ClCompile:
  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TC /errorReport:queue CMakeCCompilerId.c
  CMakeCCompilerId.c
Link:
  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdC.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdC.lib" /MACHINE:X64 Debug\CMakeCCompilerId.obj
  CompilerIdC.vcxproj -> C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\3.11.3\CompilerIdC\.\CompilerIdC.exe
PostBuildEvent:
  for %%i in (cl.exe) do @echo CMAKE_C_COMPILER=%%~$PATH:i
  :VCEnd
  CMAKE_C_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\cl.exe
FinalizeBuildStatus:
  Deleting file "Debug\CompilerIdC.tlog\unsuccessfulbuild".
  Touching "Debug\CompilerIdC.tlog\CompilerIdC.lastbuildstate".
Done Building Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\3.11.3\CompilerIdC\CompilerIdC.vcxproj" (default targets).

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:00.68


Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.exe"

Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.vcxproj"

The C compiler identification is MSVC, found in "C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/3.11.3/CompilerIdC/CompilerIdC.exe"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler:  
Build flags: 
Id flags:  

The output was:
0
Microsoft (R) Build Engine version 12.0.31010.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.

Build started 4/16/2019 11:42:03 PM.
Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\3.11.3\CompilerIdCXX\CompilerIdCXX.vcxproj" on node 1 (default targets).
PrepareForBuild:
  Creating directory "Debug\".
  Creating directory "Debug\CompilerIdCXX.tlog\".
InitializeBuildStatus:
  Creating "Debug\CompilerIdCXX.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
ClCompile:
  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /errorReport:queue CMakeCXXCompilerId.cpp
  CMakeCXXCompilerId.cpp
Link:
  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdCXX.lib" /MACHINE:X64 Debug\CMakeCXXCompilerId.obj
  CompilerIdCXX.vcxproj -> C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\3.11.3\CompilerIdCXX\.\CompilerIdCXX.exe
PostBuildEvent:
  for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i
  :VCEnd
  CMAKE_CXX_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\cl.exe
FinalizeBuildStatus:
  Deleting file "Debug\CompilerIdCXX.tlog\unsuccessfulbuild".
  Touching "Debug\CompilerIdCXX.tlog\CompilerIdCXX.lastbuildstate".
Done Building Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\3.11.3\CompilerIdCXX\CompilerIdCXX.vcxproj" (default targets).

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:00.59


Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe"

Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj"

The CXX compiler identification is MSVC, found in "C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/3.11.3/CompilerIdCXX/CompilerIdCXX.exe"

Determining if the C compiler works passed with the following output:
Change Dir: C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_b55ea.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
Microsoft (R) Build Engine version 12.0.31010.0

[Microsoft .NET Framework, version 4.0.30319.42000]

Copyright (C) Microsoft Corporation. All rights reserved.



Build started 4/16/2019 11:42:04 PM.

Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_b55ea.vcxproj" on node 1 (default targets).

PrepareForBuild:

  Creating directory "cmTC_b55ea.dir\Debug\".

  Creating directory "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\".

  Creating directory "cmTC_b55ea.dir\Debug\cmTC_b55ea.tlog\".

InitializeBuildStatus:

  Creating "cmTC_b55ea.dir\Debug\cmTC_b55ea.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_b55ea.dir\Debug\\" /Fd"cmTC_b55ea.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\testCCompiler.c"

  Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64

  Copyright (C) Microsoft Corporation.  All rights reserved.

  

  cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_b55ea.dir\Debug\\" /Fd"cmTC_b55ea.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\testCCompiler.c"

  

  testCCompiler.c

Link:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_b55ea.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_b55ea.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_b55ea.lib" /MACHINE:X64  /machine:x64 cmTC_b55ea.dir\Debug\testCCompiler.obj

  cmTC_b55ea.vcxproj -> C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_b55ea.exe

FinalizeBuildStatus:

  Deleting file "cmTC_b55ea.dir\Debug\cmTC_b55ea.tlog\unsuccessfulbuild".

  Touching "cmTC_b55ea.dir\Debug\cmTC_b55ea.tlog\cmTC_b55ea.lastbuildstate".

Done Building Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_b55ea.vcxproj" (default targets).



Build succeeded.

    0 Warning(s)

    0 Error(s)



Time Elapsed 00:00:00.91



Detecting C compiler ABI info compiled with the following output:
Change Dir: C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_1463d.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
Microsoft (R) Build Engine version 12.0.31010.0

[Microsoft .NET Framework, version 4.0.30319.42000]

Copyright (C) Microsoft Corporation. All rights reserved.



Build started 4/16/2019 11:42:05 PM.

Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_1463d.vcxproj" on node 1 (default targets).

PrepareForBuild:

  Creating directory "cmTC_1463d.dir\Debug\".

  Creating directory "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\".

  Creating directory "cmTC_1463d.dir\Debug\cmTC_1463d.tlog\".

InitializeBuildStatus:

  Creating "cmTC_1463d.dir\Debug\cmTC_1463d.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_1463d.dir\Debug\\" /Fd"cmTC_1463d.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.11\Modules\CMakeCCompilerABI.c"

  Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64

  Copyright (C) Microsoft Corporation.  All rights reserved.

  

  cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_1463d.dir\Debug\\" /Fd"cmTC_1463d.dir\Debug\vc120.pdb" /Gd /TC /errorReport:queue "C:\Program Files\CMake\share\cmake-3.11\Modules\CMakeCCompilerABI.c"

  

  CMakeCCompilerABI.c

Link:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_1463d.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_1463d.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_1463d.lib" /MACHINE:X64  /machine:x64 cmTC_1463d.dir\Debug\CMakeCCompilerABI.obj

  cmTC_1463d.vcxproj -> C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_1463d.exe

FinalizeBuildStatus:

  Deleting file "cmTC_1463d.dir\Debug\cmTC_1463d.tlog\unsuccessfulbuild".

  Touching "cmTC_1463d.dir\Debug\cmTC_1463d.tlog\cmTC_1463d.lastbuildstate".

Done Building Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_1463d.vcxproj" (default targets).



Build succeeded.

    0 Warning(s)

    0 Error(s)



Time Elapsed 00:00:00.65



Determining if the CXX compiler works passed with the following output:
Change Dir: C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_22cee.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
Microsoft (R) Build Engine version 12.0.31010.0

[Microsoft .NET Framework, version 4.0.30319.42000]

Copyright (C) Microsoft Corporation. All rights reserved.



Build started 4/16/2019 11:42:06 PM.

Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_22cee.vcxproj" on node 1 (default targets).

PrepareForBuild:

  Creating directory "cmTC_22cee.dir\Debug\".

  Creating directory "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\".

  Creating directory "cmTC_22cee.dir\Debug\cmTC_22cee.tlog\".

InitializeBuildStatus:

  Creating "cmTC_22cee.dir\Debug\cmTC_22cee.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_22cee.dir\Debug\\" /Fd"cmTC_22cee.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\testCXXCompiler.cxx"

  Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64

  Copyright (C) Microsoft Corporation.  All rights reserved.

  

  cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_22cee.dir\Debug\\" /Fd"cmTC_22cee.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\testCXXCompiler.cxx"

  

  testCXXCompiler.cxx

Link:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_22cee.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_22cee.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_22cee.lib" /MACHINE:X64  /machine:x64 cmTC_22cee.dir\Debug\testCXXCompiler.obj

  cmTC_22cee.vcxproj -> C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_22cee.exe

FinalizeBuildStatus:

  Deleting file "cmTC_22cee.dir\Debug\cmTC_22cee.tlog\unsuccessfulbuild".

  Touching "cmTC_22cee.dir\Debug\cmTC_22cee.tlog\cmTC_22cee.lastbuildstate".

Done Building Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_22cee.vcxproj" (default targets).



Build succeeded.

    0 Warning(s)

    0 Error(s)



Time Elapsed 00:00:00.65



Detecting CXX compiler ABI info compiled with the following output:
Change Dir: C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_6dd6c.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
Microsoft (R) Build Engine version 12.0.31010.0

[Microsoft .NET Framework, version 4.0.30319.42000]

Copyright (C) Microsoft Corporation. All rights reserved.



Build started 4/16/2019 11:42:06 PM.

Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_6dd6c.vcxproj" on node 1 (default targets).

PrepareForBuild:

  Creating directory "cmTC_6dd6c.dir\Debug\".

  Creating directory "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\".

  Creating directory "cmTC_6dd6c.dir\Debug\cmTC_6dd6c.tlog\".

InitializeBuildStatus:

  Creating "cmTC_6dd6c.dir\Debug\cmTC_6dd6c.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_6dd6c.dir\Debug\\" /Fd"cmTC_6dd6c.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Program Files\CMake\share\cmake-3.11\Modules\CMakeCXXCompilerABI.cpp"

  Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64

  Copyright (C) Microsoft Corporation.  All rights reserved.

  

  cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_6dd6c.dir\Debug\\" /Fd"cmTC_6dd6c.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Program Files\CMake\share\cmake-3.11\Modules\CMakeCXXCompilerABI.cpp"

  CMakeCXXCompilerABI.cpp

  

Link:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_6dd6c.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_6dd6c.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_6dd6c.lib" /MACHINE:X64  /machine:x64 cmTC_6dd6c.dir\Debug\CMakeCXXCompilerABI.obj

  cmTC_6dd6c.vcxproj -> C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_6dd6c.exe

FinalizeBuildStatus:

  Deleting file "cmTC_6dd6c.dir\Debug\cmTC_6dd6c.tlog\unsuccessfulbuild".

  Touching "cmTC_6dd6c.dir\Debug\cmTC_6dd6c.tlog\cmTC_6dd6c.lastbuildstate".

Done Building Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_6dd6c.vcxproj" (default targets).



Build succeeded.

    0 Warning(s)

    0 Error(s)



Time Elapsed 00:00:00.79





Detecting CXX [] compiler features compiled with the following output:
Change Dir: C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp

Run Build Command:"C:/Program Files (x86)/MSBuild/12.0/bin/MSBuild.exe" "cmTC_29d93.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=12.0"
Microsoft (R) Build Engine version 12.0.31010.0

[Microsoft .NET Framework, version 4.0.30319.42000]

Copyright (C) Microsoft Corporation. All rights reserved.



Build started 4/16/2019 11:42:07 PM.

Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_29d93.vcxproj" on node 1 (default targets).

PrepareForBuild:

  Creating directory "cmTC_29d93.dir\Debug\".

  Creating directory "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\".

  Creating directory "cmTC_29d93.dir\Debug\cmTC_29d93.tlog\".

InitializeBuildStatus:

  Creating "cmTC_29d93.dir\Debug\cmTC_29d93.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.

ClCompile:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_29d93.dir\Debug\\" /Fd"cmTC_29d93.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\feature_tests.cxx"

  Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64

  Copyright (C) Microsoft Corporation.  All rights reserved.

  

  cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_29d93.dir\Debug\\" /Fd"cmTC_29d93.dir\Debug\vc120.pdb" /Gd /TP /errorReport:queue "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\feature_tests.cxx"

  

  feature_tests.cxx

Link:

  C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_29d93.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_29d93.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/VR_Lab/Desktop/Tomis Thesis/sumo-src-1.2.0/sumo-1.2.0/cmake-build/CMakeFiles/CMakeTmp/Debug/cmTC_29d93.lib" /MACHINE:X64  /machine:x64 cmTC_29d93.dir\Debug\feature_tests.obj

  cmTC_29d93.vcxproj -> C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\Debug\cmTC_29d93.exe

FinalizeBuildStatus:

  Deleting file "cmTC_29d93.dir\Debug\cmTC_29d93.tlog\unsuccessfulbuild".

  Touching "cmTC_29d93.dir\Debug\cmTC_29d93.tlog\cmTC_29d93.lastbuildstate".

Done Building Project "C:\Users\VR_Lab\Desktop\Tomis Thesis\sumo-src-1.2.0\sumo-1.2.0\cmake-build\CMakeFiles\CMakeTmp\cmTC_29d93.vcxproj" (default targets).



Build succeeded.

    0 Warning(s)

    0 Error(s)



Time Elapsed 00:00:00.70



    Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:0cxx_alignas
    Feature record: CXX_FEATURE:0cxx_alignof
    Feature record: CXX_FEATURE:0cxx_attributes
    Feature record: CXX_FEATURE:0cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:0cxx_binary_literals
    Feature record: CXX_FEATURE:0cxx_constexpr
    Feature record: CXX_FEATURE:1cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:0cxx_decltype_auto
    Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:0cxx_deleted_functions
    Feature record: CXX_FEATURE:0cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:0cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:0cxx_generic_lambdas
    Feature record: CXX_FEATURE:0cxx_inheriting_constructors
    Feature record: CXX_FEATURE:0cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:0cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:0cxx_noexcept
    Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:0cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:0cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:0cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:0cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:0cxx_unrestricted_unions
    Feature record: CXX_FEATURE:0cxx_user_literals
    Feature record: CXX_FEATURE:0cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates

Back to the top