forked from robocomp/robocomp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix bug with pyside2 in cmake and qtoptions, fix deprecated exec_()
- Loading branch information
Showing
4 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 10 additions & 1 deletion
11
cli/robocompdsl/robocompdsl/templates/templatePython/files/src/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
cmake_minimum_required(VERSION 2.6) | ||
PROJECT( ${component_name} ) | ||
|
||
INCLUDE( /home/robocomp/robocomp/cmake/robocomp.cmake ) | ||
IF ( "$$ENV{ROBOCOMP}" STREQUAL "") | ||
MESSAGE(WARNING "ROBOCOMP variable not set. Using the default value: /home/robocomp/robocomp") | ||
SET (ENV{ROBOCOMP} "/home/robocomp/robocomp/") | ||
ENDIF ( "$$ENV{ROBOCOMP}" STREQUAL "") | ||
|
||
IF(NOT EXISTS $$ENV{ROBOCOMP}/cmake) | ||
MESSAGE(FATAL_ERROR "Couldn't find RoboComp in $$ENV{ROBOCOMP}! Exiting...") | ||
ENDIF(NOT EXISTS $$ENV{ROBOCOMP}/cmake) | ||
|
||
INCLUDE( $$ENV{ROBOCOMP}/cmake/robocomp.cmake ) | ||
|
||
ROBOCOMP_IDSL_TO_ICE( CommonBehavior ${ifaces_list} ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters