Do not compile with iconv on windows

This commit is contained in:
Daniel Molkentin 2012-12-07 23:09:46 +01:00
Родитель 49d2fd685b
Коммит 3f24ab599c
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -39,7 +39,7 @@ macro_ensure_out_of_source_build("${PROJECT_NAME} requires an out of source buil
include(MacroAddPlugin)
include(MacroCopyFile)
find_package(iconv)
find_package(Iconv)
find_package(CMocka)
if (CMOCKA_FOUND AND UNIT_TESTING)
include(AddCMockaTest)

Просмотреть файл

@ -1,3 +1,5 @@
option(WITH_ICONV "Build csync with iconv support" ON)
if ( NOT WIN32 )
option(WITH_ICONV "Build csync with iconv support" ON)
endif()
option(UNIT_TESTING "Build with unit tests" OFF)
option(MEM_NULL_TESTS "Enable NULL memory testing" OFF)