CMakeLists for each C file
This commit is contained in:
16
src/file/CMakeLists.txt
Normal file
16
src/file/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
||||
# Copyright (c) 2021 Dominic Msters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
# Sources
|
||||
target_sources(${PROJECT_NAME}
|
||||
PRIVATE
|
||||
asset.c
|
||||
assetmanager.c
|
||||
csv.c
|
||||
xml.c
|
||||
)
|
||||
|
||||
# Subdirs
|
||||
add_subdirectory(loaders)
|
14
src/file/loaders/CMakeLists.txt
Normal file
14
src/file/loaders/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright (c) 2021 Dominic Msters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
# Sources
|
||||
target_sources(${PROJECT_NAME}
|
||||
PRIVATE
|
||||
font.c
|
||||
item.c
|
||||
scaledtexture.c
|
||||
shader.c
|
||||
texture.c
|
||||
)
|
Reference in New Issue
Block a user