├── .gitattributes ├── .gitignore ├── ALL_BUILD.vcxproj ├── ALL_BUILD.vcxproj.filters ├── CMakeCache.txt ├── CMakeFiles ├── 0dbc7e21f9a38aa7885537c9fc935782 │ ├── INSTALL_force.rule │ ├── RUN_TESTS_force.rule │ ├── generate.stamp.rule │ └── uninstall.rule ├── 13e941a7ea367963e22e10d539bca4ce │ ├── INSTALL_force.rule │ └── RUN_TESTS_force.rule ├── 206e7bd66ba8170c5a45ea813bee8dd7 │ ├── INSTALL_force.rule │ └── RUN_TESTS_force.rule ├── 3.8.0-rc4 │ ├── CMakeCCompiler.cmake │ ├── CMakeCXXCompiler.cmake │ ├── CMakeDetermineCompilerABI_C.bin │ ├── CMakeDetermineCompilerABI_CXX.bin │ ├── CMakeRCCompiler.cmake │ ├── CMakeSystem.cmake │ ├── CompilerIdC │ │ ├── CMakeCCompilerId.c │ │ ├── CompilerIdC.exe │ │ └── CompilerIdC.vcxproj │ └── CompilerIdCXX │ │ ├── CMakeCXXCompilerId.cpp │ │ ├── CompilerIdCXX.exe │ │ └── CompilerIdCXX.vcxproj ├── TargetDirectories.txt ├── bea97e6acd07cf05ecb6305a5e8741d3 │ ├── INSTALL_force.rule │ └── RUN_TESTS_force.rule ├── c57665ec1a4af038ba8aec0f37b75648 │ ├── INSTALL_force.rule │ └── RUN_TESTS_force.rule ├── cmake.check_cache ├── feature_tests.bin ├── feature_tests.cxx ├── generate.stamp ├── generate.stamp.depend └── generate.stamp.list ├── CTestTestfile.cmake ├── INSTALL.vcxproj ├── INSTALL.vcxproj.filters ├── README.md ├── RUN_TESTS.vcxproj ├── RUN_TESTS.vcxproj.filters ├── ZERO_CHECK.vcxproj ├── ZERO_CHECK.vcxproj.filters ├── apps ├── ALL_BUILD.vcxproj ├── ALL_BUILD.vcxproj.filters ├── CMakeFiles │ ├── generate.stamp │ └── generate.stamp.depend ├── CTestTestfile.cmake ├── INSTALL.vcxproj ├── INSTALL.vcxproj.filters ├── RUN_TESTS.vcxproj ├── RUN_TESTS.vcxproj.filters ├── apps.sln ├── cadinfo.vcxproj ├── cadinfo.vcxproj.filters └── cmake_install.cmake ├── cmake_install.cmake ├── cmake_uninstall.cmake ├── lib ├── ALL_BUILD.vcxproj ├── ALL_BUILD.vcxproj.filters ├── CMakeFiles │ ├── generate.stamp │ └── generate.stamp.depend ├── CTestTestfile.cmake ├── INSTALL.vcxproj ├── INSTALL.vcxproj.filters ├── RUN_TESTS.vcxproj ├── RUN_TESTS.vcxproj.filters ├── cmake_install.cmake ├── dwg │ ├── ALL_BUILD.vcxproj │ ├── ALL_BUILD.vcxproj.filters │ ├── CMakeFiles │ │ ├── generate.stamp │ │ └── generate.stamp.depend │ ├── CTestTestfile.cmake │ ├── INSTALL.vcxproj │ ├── INSTALL.vcxproj.filters │ ├── RUN_TESTS.vcxproj │ ├── RUN_TESTS.vcxproj.filters │ ├── cmake_install.cmake │ ├── dwg.sln │ ├── dwg.vcxproj │ └── dwg.vcxproj.filters ├── opencad.sln ├── opencadstatic.vcxproj └── opencadstatic.vcxproj.filters ├── libopencad.sln ├── tests ├── CMakeFiles │ ├── generate.stamp │ └── generate.stamp.depend ├── CTestTestfile.cmake ├── INSTALL.vcxproj ├── INSTALL.vcxproj.filters ├── RUN_TESTS.vcxproj ├── RUN_TESTS.vcxproj.filters └── cmake_install.cmake ├── uninstall.vcxproj └── uninstall.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/.gitignore -------------------------------------------------------------------------------- /ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeCache.txt -------------------------------------------------------------------------------- /CMakeFiles/0dbc7e21f9a38aa7885537c9fc935782/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/0dbc7e21f9a38aa7885537c9fc935782/RUN_TESTS_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/0dbc7e21f9a38aa7885537c9fc935782/generate.stamp.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/0dbc7e21f9a38aa7885537c9fc935782/uninstall.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/13e941a7ea367963e22e10d539bca4ce/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/13e941a7ea367963e22e10d539bca4ce/RUN_TESTS_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/206e7bd66ba8170c5a45ea813bee8dd7/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/206e7bd66ba8170c5a45ea813bee8dd7/RUN_TESTS_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CMakeRCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CMakeRCCompiler.cmake -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CMakeSystem.cmake -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CompilerIdC/CompilerIdC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CompilerIdC/CompilerIdC.exe -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CompilerIdC/CompilerIdC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CompilerIdC/CompilerIdC.vcxproj -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CompilerIdCXX/CompilerIdCXX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CompilerIdCXX/CompilerIdCXX.exe -------------------------------------------------------------------------------- /CMakeFiles/3.8.0-rc4/CompilerIdCXX/CompilerIdCXX.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/3.8.0-rc4/CompilerIdCXX/CompilerIdCXX.vcxproj -------------------------------------------------------------------------------- /CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /CMakeFiles/bea97e6acd07cf05ecb6305a5e8741d3/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/bea97e6acd07cf05ecb6305a5e8741d3/RUN_TESTS_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/c57665ec1a4af038ba8aec0f37b75648/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/c57665ec1a4af038ba8aec0f37b75648/RUN_TESTS_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /CMakeFiles/generate.stamp.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CMakeFiles/generate.stamp.list -------------------------------------------------------------------------------- /CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/CTestTestfile.cmake -------------------------------------------------------------------------------- /INSTALL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/INSTALL.vcxproj -------------------------------------------------------------------------------- /INSTALL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/INSTALL.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/README.md -------------------------------------------------------------------------------- /RUN_TESTS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/RUN_TESTS.vcxproj -------------------------------------------------------------------------------- /RUN_TESTS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/RUN_TESTS.vcxproj.filters -------------------------------------------------------------------------------- /ZERO_CHECK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/ZERO_CHECK.vcxproj -------------------------------------------------------------------------------- /ZERO_CHECK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/ZERO_CHECK.vcxproj.filters -------------------------------------------------------------------------------- /apps/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /apps/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /apps/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /apps/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /apps/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/CTestTestfile.cmake -------------------------------------------------------------------------------- /apps/INSTALL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/INSTALL.vcxproj -------------------------------------------------------------------------------- /apps/INSTALL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/INSTALL.vcxproj.filters -------------------------------------------------------------------------------- /apps/RUN_TESTS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/RUN_TESTS.vcxproj -------------------------------------------------------------------------------- /apps/RUN_TESTS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/RUN_TESTS.vcxproj.filters -------------------------------------------------------------------------------- /apps/apps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/apps.sln -------------------------------------------------------------------------------- /apps/cadinfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/cadinfo.vcxproj -------------------------------------------------------------------------------- /apps/cadinfo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/cadinfo.vcxproj.filters -------------------------------------------------------------------------------- /apps/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/apps/cmake_install.cmake -------------------------------------------------------------------------------- /cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/cmake_install.cmake -------------------------------------------------------------------------------- /cmake_uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/cmake_uninstall.cmake -------------------------------------------------------------------------------- /lib/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /lib/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /lib/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /lib/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /lib/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/CTestTestfile.cmake -------------------------------------------------------------------------------- /lib/INSTALL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/INSTALL.vcxproj -------------------------------------------------------------------------------- /lib/INSTALL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/INSTALL.vcxproj.filters -------------------------------------------------------------------------------- /lib/RUN_TESTS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/RUN_TESTS.vcxproj -------------------------------------------------------------------------------- /lib/RUN_TESTS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/RUN_TESTS.vcxproj.filters -------------------------------------------------------------------------------- /lib/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/cmake_install.cmake -------------------------------------------------------------------------------- /lib/dwg/ALL_BUILD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/ALL_BUILD.vcxproj -------------------------------------------------------------------------------- /lib/dwg/ALL_BUILD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/ALL_BUILD.vcxproj.filters -------------------------------------------------------------------------------- /lib/dwg/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /lib/dwg/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /lib/dwg/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/CTestTestfile.cmake -------------------------------------------------------------------------------- /lib/dwg/INSTALL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/INSTALL.vcxproj -------------------------------------------------------------------------------- /lib/dwg/INSTALL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/INSTALL.vcxproj.filters -------------------------------------------------------------------------------- /lib/dwg/RUN_TESTS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/RUN_TESTS.vcxproj -------------------------------------------------------------------------------- /lib/dwg/RUN_TESTS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/RUN_TESTS.vcxproj.filters -------------------------------------------------------------------------------- /lib/dwg/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/cmake_install.cmake -------------------------------------------------------------------------------- /lib/dwg/dwg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/dwg.sln -------------------------------------------------------------------------------- /lib/dwg/dwg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/dwg.vcxproj -------------------------------------------------------------------------------- /lib/dwg/dwg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/dwg/dwg.vcxproj.filters -------------------------------------------------------------------------------- /lib/opencad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/opencad.sln -------------------------------------------------------------------------------- /lib/opencadstatic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/opencadstatic.vcxproj -------------------------------------------------------------------------------- /lib/opencadstatic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/lib/opencadstatic.vcxproj.filters -------------------------------------------------------------------------------- /libopencad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/libopencad.sln -------------------------------------------------------------------------------- /tests/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /tests/CMakeFiles/generate.stamp.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/tests/CMakeFiles/generate.stamp.depend -------------------------------------------------------------------------------- /tests/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/tests/CTestTestfile.cmake -------------------------------------------------------------------------------- /tests/INSTALL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/tests/INSTALL.vcxproj -------------------------------------------------------------------------------- /tests/INSTALL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/tests/INSTALL.vcxproj.filters -------------------------------------------------------------------------------- /tests/RUN_TESTS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/tests/RUN_TESTS.vcxproj -------------------------------------------------------------------------------- /tests/RUN_TESTS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/tests/RUN_TESTS.vcxproj.filters -------------------------------------------------------------------------------- /tests/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/tests/cmake_install.cmake -------------------------------------------------------------------------------- /uninstall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/uninstall.vcxproj -------------------------------------------------------------------------------- /uninstall.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SSHeRun/LibopencadBuiltInWindows/HEAD/uninstall.vcxproj.filters --------------------------------------------------------------------------------