Home
last modified time | relevance | path

Searched +full:cmake +full:- +full:3 (Results 1 – 9 of 9) sorted by relevance

/civetweb-2.7.6/
Dbuild.cmd20 @set "script_folder=%script_folder:~0,-1%"
26 @set dependency_path=%TEMP%\%project%-build-dependencies
31 @if not "!options!"=="!options:/? =!" set usage="Convenience script to build %project% with CMake"
70 @set /a "log_keep=log_keep-1"
72 @for /f "skip=%log_keep%" %%f in ('dir /b /o-D /tc %log_folder%') do @(
110 :: -------------------------- Functions start here ----------------------------
112 :main - Main function that performs the build
116 @call :log 6 "------------------------------------"
118 @call :log 2 "This script builds the project using CMake"
127 call :log 3 "Excuting the '%%m' method"
[all …]
DCMakeLists.txt1 # Determines what CMake APIs we can rely on
32 # Make sure we can import out CMake functions
33 list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
35 # Load in the needed CMake modules
45 string(REGEX MATCH "([0-9]+)\\.([0-9]+)\\.([0-9]+)" CIVETWEB_VERSION_MATCH "${CIVETWEB_VERSION}")
57 message(STATUS "Enabling tests in the build - ${CIVETWEB_BUILD_TESTING}")
66 message(STATUS "Thread Stack Size - ${CIVETWEB_THREAD_STACK_SIZE}")
69 message(STATUS "Enabling server executable - ${CIVETWEB_ENABLE_SERVER_EXECUTABLE}")
73 message(STATUS "Serve no static files - ${CIVETWEB_SERVE_NO_FILES}")
77 message(STATUS "Disable CGI support - ${CIVETWEB_DISABLE_CGI}")
[all …]
Dappveyor.yml14 - '**/*.md'
25 - id: Default-x86
26 compiler: msvc-19-seh
37 - id: Default-x64
38 compiler: msvc-19-seh
50 - id: Full-x86
51 compiler: msvc-19-seh
62 - id: Full-x64
63 compiler: msvc-19-seh
75 - id: Full-x86-Debug
[all …]
D.travis.yml10 - $HOME/third-party
17 - cmake
18 - openssl
19 - libssl-dev
21 - kubuntu-backports
25 - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
28 wget https://cmake.org/files/v3.7/cmake-3.7.2-Linux-x86_64.sh --no-check-certificate;
29 chmod +x cmake-3.7.2-Linux-x86_64.sh;
30 ./cmake-3.7.2-Linux-x86_64.sh --prefix=$HOME/usr --exclude-subdir --skip-license;
32 - cmake --version
[all …]
DRELEASE_NOTES.md6 -------
8 - Support for flawed CGI interpreters returning only <LF> instead of <CR><LF>
9 - Add NO_FILESYSTEM flag for (embedded) system without any file system
10 - Several fixes for server side Lua scripts
11 - Disable SSL renegotiation for new OpenSSL version
12 - Allow to force TLSv1.3 (disable TLSv1.2)
13 - Prefer pre-compressed *.gz file, if it already exists
14 - Fix some #include statements for various compilers / OS / SDK versions
15 - Support for Linux Standard Base (LSB)
16 - Fixes to mg_get_*_info() API functions
[all …]
/civetweb-2.7.6/src/
DCMakeLists.txt6 add_library(civetweb-c-library ${LIB_TYPE} civetweb.c)
7 set_target_properties(civetweb-c-library PROPERTIES
14 …target_compile_definitions(civetweb-c-library PRIVATE CIVETWEB_DLL_EXPORTS INTERFACE CIVETWEB_DLL_…
17 civetweb-c-library PUBLIC
20 TARGETS civetweb-c-library
21 EXPORT ${PROJECT_NAME}-targets
25 COMPONENT civetweb-c-library
30 COMPONENT civetweb-c-library)
35 target_link_libraries(civetweb-c-library WINSOCK::WINSOCK)
40 target_link_libraries(civetweb-c-library ${CMAKE_THREAD_LIBS_INIT})
[all …]
/civetweb-2.7.6/unittest/
DCMakeLists.txt11 # # Apply the patch to check to fix CMake building on OS X
13 # ${CIVETWEB_THIRD_PARTY_DIR}/src/check-unit-test-framework/CMakeLists.txt
14 # ${CMAKE_SOURCE_DIR}/cmake/check/c82fe8888aacfe784476112edd3878256d2e30bc.patch
19 ExternalProject_Add(check-unit-test-framework
20 DEPENDS civetweb-c-library
36 "-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}"
37 "-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}"
38 "-DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>"
46 ExternalProject_Get_Property(check-unit-test-framework INSTALL_DIR)
70 add_library(shared-c-unit-tests STATIC shared.c)
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/debugger/
DREADME.rst9 target supporting the example TCP transport (``examples/debug-trans-socket``)
40 $ make -f Makefile.dukdebug
54 $ ./duk --debugger mandel.js
58 $ ../../duk --debugger test-dev-mandel2-func.js
83 -----------------
92 * Ensure ``cmake`` is installed
102 - ``./build/dukluv`` on Linux
104 - ``.\build\Debug\dukluv.exe`` on Windows
112 # Manually: see "dukluv duk_debug_proxy.js --help" for help
118 $ ../../duk --debugger test-dev-mandel2-func.js
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/debugger/
DREADME.rst9 target supporting the example TCP transport (``examples/debug-trans-socket``)
40 $ make -f Makefile.dukdebug
54 $ ./duk --debugger mandel.js
58 $ ../../duk --debugger test-dev-mandel2-func.js
83 -----------------
92 * Ensure ``cmake`` is installed
102 - ``./build/dukluv`` on Linux
104 - ``.\build\Debug\dukluv.exe`` on Windows
112 # Manually: see "dukluv duk_debug_proxy.js --help" for help
118 $ ../../duk --debugger test-dev-mandel2-func.js
[all …]