add simple runtime; fix the issue of crashing when creating file and folder; some tweaks
This commit is contained in:
11
PrismRuntime/CMakeLists.txt
Normal file
11
PrismRuntime/CMakeLists.txt
Normal file
@ -0,0 +1,11 @@
|
||||
project(PrismRuntime)
|
||||
|
||||
file(GLOB_RECURSE SRC_SOURCE ./PrismRuntime/**.cpp)
|
||||
|
||||
add_executable(${PROJECT_NAME} WIN32 ${SRC_SOURCE})
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE PRISM_GUI)
|
||||
target_link_libraries(${PROJECT_NAME} PRIVATE Prism-static)
|
||||
|
||||
|
||||
add_executable(${PROJECT_NAME}-Console ${SRC_SOURCE})
|
||||
target_link_libraries(${PROJECT_NAME}-Console PRIVATE Prism-static)
|
||||
Reference in New Issue
Block a user