mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-20 22:11:33 +00:00
don't dpkg on windows and macos
No need to clutter windows and macos configuration with dpkg options, as it is unlikely to ever be useful.
This commit is contained in:
parent
67284e2f9d
commit
d4b8ac5b49
1 changed files with 6 additions and 4 deletions
|
@ -50,10 +50,12 @@ option(USE_MPG123 "use mpg123 + libsndfile for sound" ON)
|
||||||
# OS X deployment
|
# OS X deployment
|
||||||
option(OPENMW_OSX_DEPLOYMENT OFF)
|
option(OPENMW_OSX_DEPLOYMENT OFF)
|
||||||
|
|
||||||
option(BUILD_WITH_DPKG "enable dpkg-based install for debian and debian derivatives" OFF)
|
if(UNIX AND NOT APPLE)
|
||||||
if(BUILD_WITH_DPKG)
|
option(BUILD_WITH_DPKG "enable dpkg-based install for debian and debian derivatives" OFF)
|
||||||
find_program(DPKG_PROGRAM dpkg DOC "dpkg program of Debian-based systems")
|
if(BUILD_WITH_DPKG)
|
||||||
endif(BUILD_WITH_DPKG)
|
find_program(DPKG_PROGRAM dpkg DOC "dpkg program of Debian-based systems")
|
||||||
|
endif(BUILD_WITH_DPKG)
|
||||||
|
endif(UNIX AND NOT APPLE)
|
||||||
|
|
||||||
# Location of morrowind data files
|
# Location of morrowind data files
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
|
|
Loading…
Reference in a new issue