757231cc6e
* Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style.
70 lines
1.3 KiB
CMake
70 lines
1.3 KiB
CMake
cmake_minimum_required(VERSION 3.0.2)
|
|
project (NoiseSpeedTest)
|
|
|
|
include(../../SetFlags.cmake)
|
|
set_flags()
|
|
set_lib_flags()
|
|
enable_profile()
|
|
|
|
# Set include paths to the used libraries:
|
|
include_directories(SYSTEM "../../lib")
|
|
include_directories("../../src")
|
|
|
|
set_exe_flags()
|
|
|
|
# Include the shared files:
|
|
set(SHARED_SRC
|
|
../../src/Logger.cpp
|
|
../../src/LoggerListeners.cpp
|
|
../../src/OSSupport/CriticalSection.cpp
|
|
../../src/OSSupport/File.cpp
|
|
../../src/OSSupport/StackTrace.cpp
|
|
../../src/OSSupport/WinStackWalker.cpp
|
|
../../src/Noise/Noise.cpp
|
|
../../src/StringUtils.cpp
|
|
)
|
|
|
|
set(SHARED_HDR
|
|
../../src/Noise/Noise.h
|
|
../../src/Noise/OctavedNoise.h
|
|
../../src/Noise/RidgedNoise.h
|
|
../../src/OSSupport/CriticalSection.h
|
|
../../src/OSSupport/File.h
|
|
../../src/OSSupport/StackTrace.h
|
|
../../src/OSSupport/WinStackWalker.h
|
|
../../src/StringUtils.h
|
|
)
|
|
|
|
|
|
source_group("Shared" FILES ${SHARED_SRC} ${SHARED_HDR})
|
|
|
|
|
|
|
|
|
|
# Include the main source files:
|
|
set(SOURCES
|
|
NoiseSpeedTest.cpp
|
|
Globals.cpp
|
|
)
|
|
set(HEADERS
|
|
NoiseSpeedTest.h
|
|
Globals.h
|
|
SimplexNoise.h
|
|
)
|
|
|
|
source_group("" FILES ${SOURCES} ${HEADERS})
|
|
|
|
add_executable(NoiseSpeedTest
|
|
${SOURCES}
|
|
${HEADERS}
|
|
${SHARED_SRC}
|
|
${SHARED_HDR}
|
|
)
|
|
|
|
target_link_libraries(NoiseSpeedTest fmt::fmt)
|
|
|
|
set_target_properties(
|
|
NoiseSpeedTest
|
|
PROPERTIES FOLDER Tools
|
|
)
|