mirror of
https://bitbucket.org/King_DuckZ/jumping-in-d.git
synced 2024-10-30 02:49:01 +00:00
Move source files to src subdirectory.
This commit is contained in:
parent
abe3d8f493
commit
6d11e98499
6 changed files with 6 additions and 6 deletions
|
@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
|
|||
project(hello_d C D)
|
||||
|
||||
include_directories(
|
||||
.
|
||||
src/
|
||||
)
|
||||
include_directories(SYSTEM
|
||||
lib/DerelictSDL2/source
|
||||
|
@ -10,11 +10,11 @@ include_directories(SYSTEM
|
|||
)
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
main.d
|
||||
gameobj.d
|
||||
bpg.d
|
||||
texture.d
|
||||
gameobjjumping.d
|
||||
src/main.d
|
||||
src/gameobj.d
|
||||
src/bpg.d
|
||||
src/texture.d
|
||||
src/gameobjjumping.d
|
||||
|
||||
lib/DerelictSDL2/source/derelict/sdl2/functions.d
|
||||
lib/DerelictSDL2/source/derelict/sdl2/image.d
|
||||
|
|
Loading…
Reference in a new issue