cmake: get rid of relaase mode hack.

This commit is contained in:
Guilherme Brondani Torri 2016-02-02 20:14:15 +01:00
parent 1651c837da
commit e0b990e7e2

View File

@ -22,25 +22,6 @@ ENDIF()
message(STATUS "${PROJECT_NAME} ${CMAKE_INSTALL_PREFIX}
${qucs-suite_BINARY_DIR}" )
# Build qucs-core (release mode) FIXME
# * during release the repo directories are flattened
# * simply adding qucs-core, creates target name collision qucs vs (lib)qucs.
# * targets must be globally unique
# * external_project, does a copy (!)
# * this is perfect for 'external' tarbals or repos, but we have the code
# already in the tree, can we resolve the collision in another way?
include(ExternalProject)
IF(EXISTS ${CMAKE_SOURCE_DIR}/qucs-core )
ADD_SUBDIRECTORY( qucs-core )
#ExternalProject_Add ( qucs-core
# URL ${qucs-suite_SOURCE_DIR}/qucs-core/
# PREFIX ${qucs-suite_BINARY_DIR}
# INSTALL_DIR ${CMAKE_INSTALL_DIR}
# INSTALL_COMMAND "make install"
# #CMAKE_ARGS ${qucs-suite_CMAKE_ARGS}
# )
ENDIF()
FIND_PACKAGE( Qt4 REQUIRED )
SET( QT_USE_QT TRUE )