Due to commit 3bdfa9 where doc/xmlwf.1 was removed, build on Windows (using VS generated with CMake) is not working since file isn't created. Install step in CMake complains about this file not existing. Not sure if install step:
install(FILES doc/xmlwf.1 DESTINATION share/man/man1)
should be removed (on Windows) or what's the appropriate solution.
I'm running expat-code_git-379213ca196f82d19ae72195c4a9bec0553d0bb2 snapshot of master branch since expat v2.1.1 was not building on Windows using Visual Studio (generated with CMake) since it lack commit 247cc3
Hello Bjorn,
on the related commit, there should be 2.1.2 containing that soon.
The source tarball should contain xmlwf.1 (just confirmed) but building from Git should be troubled, agreed. I think we should have CMake call out to "make -C doc xmlwf.1" to not duplicate more than needed and skip that step plus installation on Windows. I'm unsure about Cygwin (and if they have docbook2x-man and sgml2xml-isoent or substitutes) right now. My CMake skills are not the best. If you can help out with a patch, that would be very welcome.
Best, Sebastian
I'm not sure what you mean by "I think we should have CMake call out to "make -C doc xmlwf.1" to not duplicate more than needed..."
On Windows (not using Cygwin) anything with xmlwf.1 should be ignored you mean?
On Cygwin docbook2x-man and sgml2xml-isoent seem to be available. Looking at the docbook2x-man package, sgml2xml-isoent seem to be included.
So I guess only the install step should be excluded on windows, right?
Good point, maybe having CMake (or its generated makefile invoke "make -C doc xmlwf.1" should be done with Linux/Unix/Cygwin but not plain Windows. Maybe omitting that single file for plain Windows is not a bad idea. So there is two parts to a fix. Sounds right?
The lines below should solve the issue.
IF(NOT WIN32)
add_custom_command(TARGET expat PRE_BUILD COMMAND $(MAKE) -C doc xmlwf.1)
ENDIF(NOT WIN32)
Hello ebersold,
I actually added just that (without the windows guard) in commit 5cfcdc3f40189799ac13ba1406989cc711da38ae on June 5th. I didn't think of commenting here back then, sorry!
I'm unsure if the Windows guard is needed as I am unsure about all the different ways CMake could be used on Windows. Maybe with MinGW but without Cygwin the command should still be run?
Hi,
I do understand your concerne and I must confess that my only concerne was to be able to build the library under windows with Visual Studio.
If we want to take into account the MinGW and Cygwin platform I would suggest to move the add_custom_command under the if (BUILD_tools AND NOT WINCE) condition. This takes into account MinGW and Cygwin. It's consistent with the install(FILES doc/xmlwf.1 ...) that is under the same condition.
What do you think about that ?
add_custom_command(TARGET expat PRE_BUILD COMMAND $(MAKE) -C doc xmlwf.1)
if(BUILD_tools AND NOT WINCE)
set(xmlwf_SRCS
xmlwf/xmlwf.c
xmlwf/xmlfile.c
xmlwf/codepage.c
xmlwf/readfilemap.c
)
endif(BUILD_tools AND NOT WINCE)
The included Visual Studio solution should build fine under vs 2013 and vs
On Jul 7, 2016 12:20, "EBERSOLD" andre67@users.sf.net wrote:
Related
Bugs:
#534I'm using the following command :
cmake -G "NMake Makefiles" ../
Meaning I don't use the Visual Studio Solution but NMake makefiles.
If your goal is a successful Windows build then use the Visual Studio
solution. Nothing else has really been tested on Windows.
On Thu, Jul 7, 2016 at 1:16 PM, EBERSOLD andre67@users.sf.net wrote:
Last edit: Karl Waclawek 2016-07-07
Hello Karl,
Anyway
incorrect in CMakeLists.txt for Windows, because $(MAKE) not defined for most Windows generators and even on Linux for ninja build tool.
Also it assumes that build started in-source and
docaccessible right in current folder.So better is
Here is some options:
And finally third option (not completely correct one, but shorter and will fix issue described by disabling BUILD_tools=OFF):
It should be only generated when
xmlwftool produced. Which should be the case only ifBUILD_toolsequalsON.So third idea, at least put this line right before, which is conditionally covered with
BUILD_toolsvariableThat patch is now in Git, thank you!
I also used the ${PROJECT_SOURCE_DIR} idea to symptom-fix out-of-source compilation for now.
Hi all,
I build expat via CMake's ExternalProject_Add() function and as such I cannot use the bundled solution. I like Sergey's BUILD_doc option best, but putting a guard around the 'add_custom_command' will also work. I would suggest IF (NOT MSVC) instead of IF (NOT WIN32).
I have added an extra "AND NOT MSVC" guard now. If that turns out too much, I'm happy to revert. Commit 2074c16a9963e67848af1a9c2c5ad1768b2b0b98 it is.
Looks fixed to me but feel free to re-open.