src/CMakeLists.txt
author František Kučera <franta-hg@frantovo.cz>
Thu, 14 Mar 2019 16:46:16 +0100
branchv_0
changeset 3 42d64bd73232
parent 1 9cd86b92aabb
child 5 980a27d138f7
permissions -rw-r--r--
connect slots, print events to stdout
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
# Spacenav Simulator Qt
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
# Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
#
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
# This program is free software: you can redistribute it and/or modify
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
# it under the terms of the GNU General Public License as published by
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
# the Free Software Foundation, either version 3 of the License, or
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
# (at your option) any later version.
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
#
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
# This program is distributed in the hope that it will be useful,
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
# GNU General Public License for more details.
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
#
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
# You should have received a copy of the GNU General Public License
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
# along with this program. If not, see <http://www.gnu.org/licenses/>.
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
set(EXECUTABLE_FILE "spacenav-simulator-qt")
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
# Qt libraries:
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
set(CMAKE_INCLUDE_CURRENT_DIR ON) # Find includes in corresponding build directories
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
set(CMAKE_AUTOMOC ON) # Instruct CMake to run moc automatically when needed
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
set(CMAKE_AUTOUIC ON) # Create code from a list of Qt designer ui files
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
find_package(Qt5Widgets CONFIG REQUIRED) # Find the QtWidgets library
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
# find_package(Qt5Charts CONFIG REQUIRED)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
# Add ASan AddressSanitizer
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address")
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
set(CMAKE_LINKER_FLAGS_DEBUG "${CMAKE_LINKER_FLAGS_DEBUG} -fno-omit-frame-pointer -fsanitize=address")
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
# From ASan wiki: "To get nicer stack traces in error messages add -fno-omit-frame-pointer."
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
# Executable output:
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
add_executable(
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
	${EXECUTABLE_FILE}
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
	# QObjects must be listed here (including them from other files is not enough)
1
9cd86b92aabb GUI draft
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    35
	SimulatorWindow.h
9cd86b92aabb GUI draft
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    36
	SimulatorWindow.cpp
3
42d64bd73232 connect slots, print events to stdout
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
    37
	SimulatorSocketServer.cpp
0
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
	spacenav-simulator-qt.cpp
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
# Link libraries:
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    42
target_link_libraries(${EXECUTABLE_FILE} -lX11 -lm -lspnav)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    43
target_link_libraries(${EXECUTABLE_FILE} Qt5::Widgets)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    44
# target_link_libraries(${EXECUTABLE_FILE} Qt5::Charts)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    45
set_property(TARGET ${EXECUTABLE_FILE} PROPERTY INSTALL_RPATH_USE_LINK_PATH TRUE)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    46
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    47
install(TARGETS ${EXECUTABLE_FILE} DESTINATION bin)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    48
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    49
# Print all variables:
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    50
#macro(print_all_variables)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    51
#	message(STATUS "print_all_variables------------------------------------------{")
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    52
#	get_cmake_property(_variableNames VARIABLES)
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    53
#	foreach (_variableName ${_variableNames})
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    54
#		message(STATUS "${_variableName}=${${_variableName}}")
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    55
#	endforeach()
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    56
#	message(STATUS "print_all_variables------------------------------------------}")
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    57
#endmacro()
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    58
#
bb36d1770a9e empty QT project linked to spnav library
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    59
#print_all_variables()