summaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2017-12-22 14:24:54 -0800
committerJoe Wilm <joe@jwilm.com>2017-12-22 14:25:14 -0800
commit672ea9b05037c8efc5984835990c74ac1c46c298 (patch)
treeb417acf90e8a0576f4ff81fbbf782a0f26b31c3b /build.rs
parent1b1d1d6c1f1ac11efc02431281145d714d9b0adc (diff)
Remove built crate
This became a support burden for me due to various compile and run time issues.
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/build.rs b/build.rs
index da0c6130..0bdea324 100644
--- a/build.rs
+++ b/build.rs
@@ -11,7 +11,6 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
-extern crate built;
extern crate gl_generator;
use gl_generator::{Registry, Api, Profile, Fallbacks, GlobalGenerator};
@@ -28,6 +27,4 @@ fn main() {
])
.write_bindings(GlobalGenerator, &mut file)
.unwrap();
-
- built::write_built_file().unwrap();
}