diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index c43da1c..137226d 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -12,7 +12,12 @@
-
+
+
+
+
+
+
@@ -27,14 +32,14 @@
-
+
-
+
@@ -64,28 +69,29 @@
- {
+ "keyToString": {
+ "Custom Build Application.Debug.executor": "Debug",
+ "RunOnceActivity.RadMigrateCodeStyle": "true",
+ "RunOnceActivity.ShowReadmeOnStart": "true",
+ "RunOnceActivity.cidr.known.project.marker": "true",
+ "RunOnceActivity.readMode.enableVisualFormatting": "true",
+ "cf.advertisement.text.has.clang-format": "true",
+ "cf.first.check.clang-format": "false",
+ "cidr.known.project.marker": "true",
+ "git-widget-placeholder": "master",
+ "last_opened_file_path": "/home/mewin/Documents/projects/C++/sdl_gpu_test/compile_commands.json",
+ "node.js.detected.package.eslint": "true",
+ "node.js.detected.package.tslint": "true",
+ "node.js.selected.package.eslint": "(autodetect)",
+ "node.js.selected.package.tslint": "(autodetect)",
+ "nodejs_package_manager_path": "npm",
+ "settings.editor.selected.configurable": "CLionExternalConfigurable",
+ "vue.rearranger.settings.migration": "true"
}
-}]]>
+}
-
+
@@ -102,6 +108,7 @@
+
diff --git a/SConstruct b/SConstruct
index 7d1732c..5596200 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1,10 +1,10 @@
config = {
- 'PROJECT_NAME': 'spp_template'
+ 'PROJECT_NAME': 'sdl_gpu_test'
}
env = SConscript('external/scons-plus-plus/SConscript', exports = ['config'])
env.Append(CPPPATH = [Dir('private'), Dir('public')])
# app
-env = env.Module('private/spp_template/SModule')
+env = env.Module('private/sdl_gpu_test/SModule')
env.Finalize()
diff --git a/private/spp_template/SModule b/private/sdl_gpu_test/SModule
similarity index 61%
rename from private/spp_template/SModule
rename to private/sdl_gpu_test/SModule
index 31cae3e..d88fc8d 100644
--- a/private/spp_template/SModule
+++ b/private/sdl_gpu_test/SModule
@@ -6,10 +6,13 @@ src_files = Split("""
""")
prog_app = env.UnityProgram(
- target = env['BIN_DIR'] + '/spp_template',
+ target = env['BIN_DIR'] + '/sdl_gpu_test',
source = src_files,
dependencies = {
- 'mijin': {}
+ 'mijin': {},
+ 'SDL': {
+
+ }
}
)
env.Default(prog_app)
diff --git a/private/spp_template/main.cpp b/private/sdl_gpu_test/main.cpp
similarity index 100%
rename from private/spp_template/main.cpp
rename to private/sdl_gpu_test/main.cpp