mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-09 15:47:34 +02:00
Display FIXME on adding tests & samples
Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
parent
dbf48b5440
commit
1bffff1157
@ -31,11 +31,21 @@ POCO_INSTALL("${LIBNAME}")
|
|||||||
POCO_GENERATE_PACKAGE("${LIBNAME}")
|
POCO_GENERATE_PACKAGE("${LIBNAME}")
|
||||||
|
|
||||||
if (ENABLE_TESTS)
|
if (ENABLE_TESTS)
|
||||||
#TODO:
|
if (WIN32)
|
||||||
|
# FIXME:
|
||||||
# add_subdirectory(testsuite)
|
# add_subdirectory(testsuite)
|
||||||
|
message(STATUS "############ FIXME: add_subdirectory(testsuite)")
|
||||||
|
else ()
|
||||||
|
add_subdirectory(testsuite)
|
||||||
|
endif ()
|
||||||
endif ()
|
endif ()
|
||||||
if (ENABLE_SAMPLES)
|
if (ENABLE_SAMPLES)
|
||||||
#TODO: Looks like the samples use crypto somehow?
|
if (WIN32)
|
||||||
#add_subdirectory(samples)
|
# FIXME: Looks like the samples use crypto somehow?
|
||||||
|
# add_subdirectory(samples)
|
||||||
|
message(STATUS "############ FIXME: add_subdirectory(samples)")
|
||||||
|
else ()
|
||||||
|
add_subdirectory(testsuite)
|
||||||
|
endif ()
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
@ -76,12 +76,12 @@ install:
|
|||||||
- c:\cygwin\bin\cat /proc/cpuinfo
|
- c:\cygwin\bin\cat /proc/cpuinfo
|
||||||
- c:\cygwin\bin\cat /proc/meminfo
|
- c:\cygwin\bin\cat /proc/meminfo
|
||||||
- ps: |
|
- ps: |
|
||||||
if (Test-Path "$env:ChocolateyInstall/bin/jom.exe") {
|
if (Test-Path "$env:ChocolateyInstall\bin\jom.exe") {
|
||||||
echo "using jom from cache"
|
echo "using jom from cache"
|
||||||
} else {
|
} else {
|
||||||
choco install jom
|
choco install jom
|
||||||
}
|
}
|
||||||
if (Test-Path "$env:ChocolateyInstall/bin/cmake.exe") {
|
if (Test-Path "$env:ChocolateyInstall\bin\cmake.exe") {
|
||||||
echo "using cmake from cache"
|
echo "using cmake from cache"
|
||||||
} else {
|
} else {
|
||||||
choco install cmake
|
choco install cmake
|
||||||
@ -195,7 +195,7 @@ build_script:
|
|||||||
} catch {
|
} catch {
|
||||||
Write-Warning "Oops: $_"
|
Write-Warning "Oops: $_"
|
||||||
}
|
}
|
||||||
$host.SetShouldExit(0);
|
cd ..
|
||||||
}
|
}
|
||||||
|
|
||||||
before_test:
|
before_test:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user