-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dashodanger
committed
Sep 30, 2024
1 parent
5da6bc6
commit 6a5b4df
Showing
8 changed files
with
69 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
add_subdirectory(fastPRNG) | ||
if(NOT CONSOLE_ONLY) | ||
add_subdirectory(fltk) | ||
endif() | ||
add_subdirectory(minilua) | ||
add_subdirectory(miniz) | ||
add_subdirectory(physfs) | ||
add_subdirectory(steve) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
########################################## | ||
# fastPRNG | ||
########################################## | ||
|
||
add_library(fastPRNG INTERFACE) | ||
|
||
target_include_directories(fastPRNG INTERFACE | ||
${CMAKE_CURRENT_SOURCE_DIR}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
########################################## | ||
# minilua | ||
########################################## | ||
|
||
add_library(minilua minilua.cc) | ||
|
||
target_include_directories(minilua PUBLIC ./) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#define LUA_IMPL | ||
#include "minilua.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
# AJBSP CMake Script | ||
cmake_minimum_required(VERSION 3.2.2) | ||
########################################## | ||
# miniz | ||
########################################## | ||
|
||
project( | ||
add_library( | ||
miniz | ||
LANGUAGES C | ||
VERSION 0.1.0 | ||
) | ||
miniz.c | ||
) | ||
|
||
set(CMAKE_CC_FLAGS | ||
"-O2 -ffast-math -fno-strict-aliasing -DINLINE_G=inline -Wall" | ||
) | ||
|
||
add_library(miniz miniz.c) | ||
target_include_directories(miniz PUBLIC ./) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
########################################## | ||
# steve | ||
########################################## | ||
|
||
project(steve) | ||
|
||
set(CMAKE_CXX_STANDARD 17) | ||
set(CMAKE_CXX_STANDARD_REQUIRED True) | ||
|
||
file(GLOB_RECURSE SOURCES src/*.cpp src/*.h) | ||
|
||
add_library(steve ${SOURCES}) | ||
add_library(steve ${SOURCES}) | ||
|
||
target_include_directories(steve PUBLIC ./src) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters