wowlet/cmake/FindXfixes.cmake
dsc 6cf4299f78 Linux activation
Lets annoy some Linux users by showing a watermark in the bottom-right corner:

![https://i.imgur.com/XdrQDCt.png](https://i.imgur.com/XdrQDCt.png)

Settings

![https://i.imgur.com/1yNDYuJ.png](https://i.imgur.com/1yNDYuJ.png)

Serial number(s) will be available on the Wownero forum in a topic posted by notorious software pirate `sp00kyhax`.

With these serial(s) one can activate WOWlet:

![https://i.imgur.com/cGpmpkk.png](https://i.imgur.com/cGpmpkk.png)
2022-05-18 00:07:38 +02:00

26 lines
No EOL
718 B
CMake

# - Find XFixes
# Find the XFixes libraries
#
# This module defines the following variables:
# XFIXES_FOUND - 1 if XFIXES_INCLUDE_DIR & XFIXES_LIBRARY are found, 0 otherwise
# XFIXES_INCLUDE_DIR - where to find Xlib.h, etc.
# XFIXES_LIBRARY - the X11 library
#
find_path( XFIXES_INCLUDE_DIR
NAMES X11/extensions/Xfixes.h
PATH_SUFFIXES X11/extensions
DOC "The XFixes include directory" )
find_library( XFIXES_LIBRARY
NAMES Xfixes
PATHS /usr/lib /lib
DOC "The XFixes library" )
if( XFIXES_INCLUDE_DIR AND XFIXES_LIBRARY )
set( XFIXES_FOUND 1 )
else()
set( XFIXES_FOUND 0 )
endif()
mark_as_advanced( XFIXES_INCLUDE_DIR XFIXES_LIBRARY )