Skip to content

Commit

Permalink
Add setup.py and Sconstruct for CodeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidokert committed Jun 30, 2024
1 parent 0e78f63 commit 1b28ab6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions SConstruct
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Program('hello.cpp')
18 changes: 18 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# pylint: disable=missing-module-docstring
from setuptools import setup
from setuptools.command.build_py import build_py


class CustomBuild(build_py):

def run(self):
# Place your custom build logic here
print('Running custom build steps')
super().run()


setup(
name='Cobalt',
version='25.0',
packages=['cobalt-runtime'],
cmdclass={'build_py': CustomBuild})

0 comments on commit 1b28ab6

Please sign in to comment.