From be0be659c1accba0cf3dea89e8e9e820216d9d3a Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Tue, 23 Jun 2020 16:34:19 +0930 Subject: first commit, basic logic works --- CMakeLists.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..03083e2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,21 @@ +cmake_minimum_required(VERSION 3.1) + +project(foxlogicgates) + +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(foxlogicgates + MainWindow.h + MainWindow.cpp + main.cpp + Gate.cpp + Gate.h + icons.h +) +target_link_libraries(foxlogicgates FOX-1.6) -- cgit v1.2.3