prog.
This commit is contained in:
@ -1,33 +0,0 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
# Includes
|
||||
set(
|
||||
DAWN_SHARED_INCLUDES
|
||||
${CMAKE_CURRENT_LIST_DIR}
|
||||
|
||||
CACHE INTERNAL
|
||||
${DAWN_CACHE_TARGET}
|
||||
)
|
||||
|
||||
# Sources
|
||||
set(D ${CMAKE_CURRENT_LIST_DIR})
|
||||
set(
|
||||
DAWN_SHARED_SOURCES
|
||||
${D}/util/memory.cpp
|
||||
${D}/display/Color.cpp
|
||||
${D}/assert/assert.cpp
|
||||
${D}/util/Xml.cpp
|
||||
${D}/util/UsageLock.cpp
|
||||
|
||||
CACHE INTERNAL
|
||||
${DAWN_CACHE_TARGET}
|
||||
)
|
||||
|
||||
# Compile Definitions
|
||||
set(
|
||||
DAWN_SHARED_DEFINITIONS
|
||||
|
||||
)
|
@ -1,33 +0,0 @@
|
||||
// Copyright (c) 2023 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
|
||||
// Static Libs
|
||||
extern "C" {
|
||||
// Standard Libs
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
#include <float.h>
|
||||
|
||||
typedef bool bool_t;
|
||||
typedef char char_t;
|
||||
}
|
||||
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
#include <map>
|
||||
#include <array>
|
||||
#include <memory>
|
||||
#include <algorithm>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <functional>
|
Reference in New Issue
Block a user