Skip to content

Instantly share code, notes, and snippets.

@mic-e
mic-e / gist:2b2681b7dca31488aec1
Created April 13, 2015 11:12
Python GTK file chooser
#!/usr/bin/env python3
from gi.repository import Gtk
class FileChooserError(Exception):
pass
class FileChooser(Gtk.FileChooserDialog):
@mic-e
mic-e / CMakeLists.txt
Last active August 29, 2015 14:08
minimal cmake python test
# 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)