summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 225c27d8ca758cf446eb6de8258dfa2d640a11ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 -lpugixml")

include_directories( /usr/include/fox-1.6 )

add_executable(foxlogicgates
	MainWindow.h
	MainWindow.cpp
	main.cpp
	Gate.cpp
	Gate.h
	icons.h
	Object.h
	BinaryDisplay.cpp
	BinaryDisplay.h
)
target_link_libraries(foxlogicgates FOX-1.6)