#-------------------------------------------------------------------------------
option(ENABLE_TESTS "Enable unit tests" FALSE)
-option(STATIC_PKGDEPS_LIBS "Statically link to sigrok libraries" FALSE)
+option(STATIC_PKGDEPS_LIBS "Statically link to (pkgconfig) libraries" FALSE)
if(WIN32)
- # On Windows/MinGW we need to statically link to libraries
- # This option is user configurable, but enable it by default on win32
+ # On Windows/MinGW we need to statically link to libraries.
+ # This option is user configurable, but enable it by default on win32.
set(STATIC_PKGDEPS_LIBS TRUE)
endif()
# On Windows/MinGW we explicitly point cmake to the Boost directory.
if(WIN32)
set(BOOST_ROOT /usr/local)
-endif(WIN32)
+endif()
find_package(Qt4 REQUIRED)
find_package(Boost 1.46 COMPONENTS unit_test_framework REQUIRED)
/*
- * This file is part of pulseview.
+ * This file is part of the PulseView project.
*
* Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
*
#ifndef _PULSEVIEW_CONFIG_H
#define _PULSEVIEW_CONFIG_H
-/* Application Details */
+/* Application details */
#define PV_TITLE "@PV_TITLE@"
#define PV_DESCRIPTION "@PV_DESCRIPTION@"
#define PV_BIN_NAME "@PROJECT_NAME@"
/*
+ * This file is part of the PulseView project.
+ *
* Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
*
* This program is free software; you can redistribute it and/or modify