1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-04-05 19:08:38 -04:00

Fix missing target

The debian target was being added  as a dependency to teh wsjtx target
even when it  doesn't exist. This isn't  allowed in CMake v3  so it no
longer added if it doesn't exist.

Merged from wsjtx-1.4 branch.



git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4562 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2014-10-28 01:00:46 +00:00
parent 1c9f1e603b
commit b2e34418df

View File

@ -719,8 +719,9 @@ if (UNIX)
endif (NOT WSJT_SKIP_MANPAGES)
if (NOT APPLE)
add_subdirectory (debian)
add_dependencies (wsjtx debian)
endif (NOT APPLE)
add_dependencies (wsjtx manpages debian)
add_dependencies (wsjtx manpages)
endif (UNIX)
if (WSJT_CREATE_WINMAIN)