From 1d38c1aa4c7fda8e55325783596df26e54a9777e Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Thu, 11 Jun 2020 01:57:18 +0930 Subject: initial progress --- CMakeLists.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..62ed893 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,23 @@ +cmake_minimum_required(VERSION 3.1) + +project(foxminesweeper) + +set(CMAKE_CXX_STANDARD 11) +set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin) + +# Compiler Options +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -Wall") + +include_directories( /usr/include/fox-1.6 ) + +add_executable(foxminesweeper + MainWindow.h + MainWindow.cpp + main.cpp + icons.h + Board.cpp + Board.h + Tile.cpp + Tile.h +) +target_link_libraries(foxminesweeper FOX-1.6) -- cgit v1.2.3