Moved C++ tools out
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -83,7 +83,6 @@ assets/borrowed
|
||||
.VSCode*
|
||||
|
||||
/vita
|
||||
/tools
|
||||
|
||||
._*
|
||||
|
||||
|
@ -17,7 +17,7 @@ set(DAWN_CACHE_TARGET "dawn-target")
|
||||
set(DAWN_ROOT_DIR "${CMAKE_SOURCE_DIR}")
|
||||
set(DAWN_BUILD_DIR "${CMAKE_BINARY_DIR}")
|
||||
set(DAWN_SOURCES_DIR "${DAWN_ROOT_DIR}/src")
|
||||
set(DAWN_TOOLS_DIR "${DAWN_SOURCES_DIR}/dawntools")
|
||||
set(DAWN_TOOLS_DIR "${DAWN_ROOT_DIR}/tools")
|
||||
set(DAWN_ASSETS_SOURCE_DIR "${DAWN_ROOT_DIR}/assets")
|
||||
set(DAWN_ASSETS_BUILD_DIR "${DAWN_BUILD_DIR}/assets")
|
||||
set(DAWN_GENERATED_DIR "${DAWN_BUILD_DIR}/generated")
|
||||
@ -34,6 +34,9 @@ project(Dawn
|
||||
LANGUAGES C CXX
|
||||
)
|
||||
|
||||
# Add tools
|
||||
add_subdirectory(tools)
|
||||
|
||||
# Add Libraries
|
||||
add_subdirectory(lib)
|
||||
|
||||
|
@ -12,9 +12,6 @@ set(
|
||||
# Include shared libs
|
||||
add_subdirectory(dawnshared)
|
||||
|
||||
# Include tools
|
||||
add_subdirectory(dawntools)
|
||||
|
||||
# Change what we are building. Pulled from the cmake/targets dir.
|
||||
if(DEFINED DAWN_BUILDING)
|
||||
add_subdirectory(${DAWN_BUILDING})
|
||||
|
@ -15,16 +15,6 @@ set(
|
||||
CACHE INTERNAL ${DAWN_CACHE_TARGET}
|
||||
)
|
||||
|
||||
# Tool-Utils
|
||||
set(DAWN_TOOL_SOURCES "")
|
||||
include(util/CMakeLists.txt)
|
||||
include(util/parser/CMakeLists.txt)
|
||||
include(util/generator/CMakeLists.txt)
|
||||
|
||||
# Tools
|
||||
add_subdirectory(assetstool)
|
||||
add_subdirectory(prefabtool)
|
||||
add_subdirectory(scenetool)
|
||||
add_subdirectory(texturetool)
|
||||
add_subdirectory(truetypetool)
|
||||
add_subdirectory(vnscenetool)
|
||||
add_subdirectory(texturetool)
|
Reference in New Issue
Block a user