Experimental libretro extra inputs.
[SquirrelJME.git] / nanocoat / cmake / docker.cmake
blob72b0b5e15d57fee09fd2ba5a5a4f371f87b50616
1 # ---------------------------------------------------------------------------
2 # SquirrelJME
3 #     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
4 # ---------------------------------------------------------------------------
5 # SquirrelJME is under the Mozilla Public License Version 2.0.
6 # See license.mkd for licensing and copyright information.
7 # ---------------------------------------------------------------------------
8 # DESCRIPTION: Docker Detection, really only used for testing
10 # Find Docker
11 find_program(DOCKER docker)
13 # Do we have Docker?
14 if(DOCKER)
15         # Set that we have it
16         set(DOCKER_FOUND ON)
17 endif()