This file contains hidden or 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
| #!/usr/bin/env python3 | |
| from gi.repository import Gtk | |
| class FileChooserError(Exception): | |
| pass | |
| class FileChooser(Gtk.FileChooserDialog): |
This file contains hidden or 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
| # testing instructions: | |
| # - save this file as /tmp/x/CMakeLists.txt | |
| # - cd /tmp/x | |
| # - cmake . | |
| # - paste output and your distro version in comments | |
| cmake_minimum_required(VERSION 2.8) | |
| # cmake 2.8 doesn't know about python3.4 | |
| set(Python_ADDITIONAL_VERSIONS 3.4) |
NewerOlder