summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 18f10261ad3f207b18ac8fba0e9202d2425a6c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
)
target_link_libraries(foxlogicgates FOX-1.6)